:root {
  --color-bg: #F5F7FA;
  --color-surface: #FFFFFF;
  --color-primary: #1E90FF;
  --color-primary-deep: #0056A3;
  --color-accent: #FF8C00;
  --color-teal: #00C2C7;
  --color-purple: #7A5CFF;
  --color-text: #1A1A2E;
  --color-soft-text: #4A5568;
  --color-muted: #8494A6;
  --color-footer: #112B3C;
  --color-info-bg: #E6F0F9;
  --color-line: rgba(30, 144, 255, .14);

  --font-heading: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "Yuanti SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;

  --header-h: 64px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 28px;
  --space-lg: 48px;
  --space-xl: 80px;
  --container-w: 1200px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-text);
  background:
    radial-gradient(ellipse at 88% 10%, rgba(0, 194, 199, .05), transparent 38%),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-primary-deep);
  margin: 0 0 14px;
}

p {
  margin: 0 0 16px;
}

a {
  color: var(--color-primary-deep);
  text-decoration: none;
}

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

ul, ol {
  margin: 0 0 16px;
  padding-left: 1.4em;
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
}

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

#main-content {
  display: block;
  padding-top: calc(var(--header-h) + 24px);
  min-height: 60vh;
}

.sr-only {
  position: absolute;
  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;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section {
  padding: var(--space-xl) 0;
}

.section-tight {
  padding: var(--space-lg) 0;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

@media (max-width: 620px) {
  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
}

.section-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.h-xl {
  font-family: var(--font-heading);
  font-size: clamp(36px, 7vw, 84px);
  font-weight: 200;
  letter-spacing: .06em;
  line-height: 1.15;
  color: var(--color-primary-deep);
  margin: 0 0 18px;
}

.h-lg {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.6vw, 50px);
  font-weight: 200;
  letter-spacing: .05em;
  line-height: 1.25;
  color: var(--color-primary-deep);
  margin: 0 0 16px;
}

.h-md {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.35;
  color: var(--color-primary-deep);
  margin: 0 0 14px;
}

.lead {
  font-size: 17px;
  line-height: 1.9;
  color: var(--color-soft-text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, box-shadow .25s, transform .25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 144, 255, .28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #339DFF, var(--color-primary-deep));
  color: #fff;
  box-shadow: 0 7px 22px rgba(30, 144, 255, .38);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary-deep);
  border-color: rgba(30, 144, 255, .4);
}

.btn-outline:hover {
  background: rgba(30, 144, 255, .08);
  border-color: var(--color-primary);
  color: var(--color-primary-deep);
}

.btn-accent {
  background: linear-gradient(135deg, #FF9B21, #FF7A00);
  color: #112B3C;
  box-shadow: 0 4px 14px rgba(255, 140, 0, .26);
}

.btn-accent:hover {
  transform: translateY(-1px);
  box-shadow: 0 7px 20px rgba(255, 140, 0, .34);
  color: #112B3C;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 13px;
  color: var(--color-muted);
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb li + li::before {
  content: "/";
  color: #B7C5D4;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-soft-text);
}

.card {
  background: var(--color-surface);
  border: 1px solid rgba(30, 144, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 20px rgba(17, 43, 60, .05);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(17, 43, 60, .1);
  border-color: rgba(30, 144, 255, .22);
}

.card-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-text {
  font-size: 14px;
  color: var(--color-soft-text);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.6;
}

.tag-blue {
  background: var(--color-info-bg);
  color: var(--color-primary-deep);
  border-color: rgba(30, 144, 255, .16);
}

.tag-teal {
  background: rgba(0, 194, 199, .1);
  color: #00868B;
  border-color: rgba(0, 194, 199, .22);
}

.tag-orange {
  background: rgba(255, 140, 0, .1);
  color: #B45A00;
  border-color: rgba(255, 140, 0, .24);
}

.tag-purple {
  background: rgba(122, 92, 255, .1);
  color: #5B3FD6;
  border-color: rgba(122, 92, 255, .22);
}

.data-num {
  display: inline-block;
  font-family: "SF Mono", "Consolas", "Menlo", monospace;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .01em;
  color: var(--color-accent);
}

.data-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: .04em;
}

.img-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 200px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(145deg, rgba(30, 144, 255, .08), rgba(0, 194, 199, .06)),
    var(--color-info-bg);
  border: 1px solid rgba(30, 144, 255, .14);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-frame::after {
  content: "图片占位 · 页面布局时替换";
  padding: 6px 16px;
  background: rgba(255, 255, 255, .7);
  border: 1px dashed rgba(30, 144, 255, .35);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: .08em;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 22px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(30, 144, 255, .3);
  transform: translateY(-220%);
  transition: transform .25s ease;
}

.skip-link:hover {
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(255, 140, 0, .8);
  outline-offset: 2px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-teal), var(--color-accent));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 400;
  pointer-events: none;
  transition: opacity .2s ease;
}

body.nav-open .scroll-progress {
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 200;
  background: rgba(245, 247, 250, .9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-line);
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 64px;
  height: 3px;
  border-radius: 3px;
  pointer-events: none;
}

.site-header::before {
  left: 20px;
  background: var(--color-accent);
  opacity: .85;
}

.site-header::after {
  right: 20px;
  background: var(--color-teal);
  opacity: .85;
}

.header-inner {
  position: relative;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.nav-toggle {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  border: 1px solid rgba(30, 144, 255, .2);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(17, 43, 60, .08);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.nav-toggle:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(30, 144, 255, .18);
  transform: translateY(-1px);
}

.nav-toggle:active {
  transform: translateY(0);
}

.nav-toggle[aria-expanded="true"] {
  border-color: rgba(30, 144, 255, .4);
}

.nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary-deep);
  transition: transform .3s ease, opacity .3s 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);
}

.brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  padding: 4px 8px;
}

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

.brand:hover .brand-mark {
  box-shadow: 0 6px 20px rgba(30, 144, 255, .42);
  transform: rotate(-3deg);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1E90FF, #0056A3);
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(30, 144, 255, .28);
  transition: transform .3s, box-shadow .3s;
}

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

.brand-name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--color-primary-deep);
}

.brand-en {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.header-region {
  margin: 0 0 0 auto;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--color-muted);
  padding-left: 12px;
  border-left: 2px solid var(--color-teal);
}

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

  .header-region {
    display: none;
  }
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  overflow-y: auto;
  background:
    radial-gradient(ellipse at 80% 16%, rgba(30, 144, 255, .16), transparent 46%),
    radial-gradient(ellipse at 12% 82%, rgba(0, 194, 199, .09), transparent 40%),
    linear-gradient(135deg, #0A3A5C 0%, #112B3C 64%, #082032 100%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s ease, visibility 0s linear .38s;
}

.site-nav[data-open] {
  opacity: 1;
  visibility: visible;
  transition: opacity .38s ease, visibility 0s;
}

.nav-overlay {
  max-width: 1100px;
  min-height: 100%;
  margin: 0 auto;
  padding: 22px 28px 36px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 640px) {
  .nav-overlay {
    padding: 16px 20px 24px;
  }
}

.nav-overlay-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.nav-overlay-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
}

.nav-overlay-brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-teal));
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 14px rgba(30, 144, 255, .35);
}

.nav-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s;
}

.nav-close:hover {
  background: rgba(255, 140, 0, .22);
  border-color: var(--color-accent);
  transform: rotate(90deg);
}

.nav-overlay-body {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  padding: 28px 0;
}

.nav-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 48px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.nav-item {
  min-width: 0;
}

.nav-link {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 18px;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  transition: background .25s, color .25s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

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

.nav-num {
  flex-shrink: 0;
  min-width: 2.4em;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--color-teal);
}

.nav-label {
  flex-shrink: 0;
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .05em;
  line-height: 1.3;
  color: inherit;
  transition: color .25s, transform .25s;
}

.nav-link:hover .nav-label {
  color: #FFB35C;
  transform: translateX(4px);
}

.nav-link[aria-current="page"] .nav-label::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-left: 8px;
  background: var(--color-accent);
  vertical-align: middle;
}

.nav-desc {
  margin-left: auto;
  text-align: right;
  font-size: 12px;
  letter-spacing: .03em;
  color: rgba(255, 255, 255, .44);
  white-space: nowrap;
}

@media (max-width: 860px) {
  .nav-desc {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nav-label {
    font-size: 21px;
  }

  .nav-overlay-body {
    padding: 16px 0;
  }
}

.nav-overlay-foot {
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.nav-search {
  flex: 1;
  min-width: 200px;
}

.nav-search-input {
  width: 100%;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: background .25s, border-color .25s;
}

.nav-search-input::placeholder {
  color: rgba(255, 255, 255, .5);
  opacity: 1;
}

.nav-search-input:focus {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, .16);
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #FF9B21, #FF7A00);
  color: #112B3C;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255, 140, 0, .3);
  transition: transform .25s, box-shadow .25s;
}

.quick-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 22px rgba(255, 140, 0, .4);
  color: #112B3C;
}

.quick-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-deep);
  flex-shrink: 0;
}

body.nav-open {
  overflow: hidden;
}

.site-footer {
  position: relative;
  margin-top: 0;
  background: var(--color-footer);
  color: rgba(255, 255, 255, .72);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(30, 144, 255, .12), transparent 42%),
    radial-gradient(circle at 8% 30%, rgba(122, 92, 255, .07), transparent 44%);
  pointer-events: none;
}

.footer-deco {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 30px;
  padding: 0 20px;
  background: rgba(0, 0, 0, .18);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.footer-deco::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .26) 18%, rgba(255, 255, 255, .26) 82%, transparent);
}

.deco-flag {
  width: 14px;
  height: 20px;
  margin-top: 3px;
  background: var(--color-primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  opacity: .85;
}

.deco-flag:nth-child(1) {
  background: #1E90FF;
}

.deco-flag:nth-child(2) {
  background: #00C2C7;
}

.deco-flag:nth-child(3) {
  background: #FF8C00;
}

.deco-flag:nth-child(4) {
  background: #7A5CFF;
}

.deco-flag:nth-child(5) {
  background: #1E90FF;
}

.deco-flag:nth-child(6) {
  background: #00C2C7;
}

.deco-flag:nth-child(7) {
  background: #FF8C00;
}

.deco-flag:nth-child(8) {
  background: #7A5CFF;
}

@media (max-width: 480px) {
  .deco-flag:nth-child(even) {
    display: none;
  }
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  gap: 36px 48px;
  padding: 52px 0 36px;
}

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

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

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

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

.footer-brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-deep));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(30, 144, 255, .3);
  margin-bottom: 16px;
}

.footer-brand-name {
  margin: 0 0 2px;
  color: #fff;
  font-size: 20px;
  letter-spacing: .08em;
}

.footer-tagline {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .42);
}

.footer-trust {
  margin: 0 0 20px;
  padding-left: 14px;
  border-left: 3px solid var(--color-teal);
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, .62);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-dot {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-family: var(--font-heading);
  font-size: 12px;
  transition: background .25s, border-color .25s, transform .25s;
}

.social-dot:hover {
  background: rgba(30, 144, 255, .28);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.footer-col-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background: var(--color-teal);
  border-radius: 2px;
}

.footer-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  display: inline-block;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
}

.footer-list a:hover {
  color: var(--color-accent);
  padding-left: 3px;
}

.footer-list.contact-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .74);
}

.foot-label {
  flex-shrink: 0;
  min-width: 3em;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--color-teal);
}

.footer-note {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .52);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom p {
  margin: 0;
}

.footer-icp {
  letter-spacing: .08em;
}

.footer-address-line {
  margin-left: auto;
}

@media (max-width: 640px) {
  .footer-address-line {
    margin-left: 0;
  }
}

:focus-visible {
  outline: 3px solid rgba(255, 140, 0, .75);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
