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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

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

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

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

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

a {
  color: #4A6FA5;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover {
  color: #FF6B35;
}

:root {
  --c-indigo: #2B3A67;
  --c-indigo-light: #4A6FA5;
  --c-snow: #FFFFFF;
  --c-cloud: #F4F7FB;
  --c-orange: #FF6B35;
  --c-orange-light: #FF8C5A;
  --c-ink: #2E3440;
  --c-line: #D8E1E8;
  --c-night: #0F1B2D;
  --gradient-sunrise: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
  --gradient-plateau: linear-gradient(135deg, #2B3A67 0%, #4A6FA5 100%);
  --font-display: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  --font-num: "DIN Alternate", "Bahnschrift", "Arial Narrow", sans-serif;
  --shadow-card: 0 6px 24px rgba(43, 58, 103, .08);
  --shadow-hover: 0 14px 36px rgba(43, 58, 103, .14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --header-width: 280px;
  --content-max: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (min-width: 768px) and (max-width: 1024px) {
  :root {
    --header-width: 88px;
  }
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-ink);
  background-color: var(--c-snow);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-night);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

#main-content {
  display: block;
  min-height: 65vh;
}

#main-content:focus {
  outline: none;
}

@media (min-width: 768px) {
  #main-content {
    margin-left: var(--header-width);
  }
}

@media (max-width: 767px) {
  #main-content {
    padding-top: 64px;
  }
}

.container {
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
}

section,
.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}

.kicker {
  display: inline-block;
  font-family: var(--font-num);
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
}

.section-desc {
  max-width: 560px;
  font-size: 1rem;
  color: var(--c-ink);
  opacity: .72;
}

.axis-index {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-num);
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--c-indigo-light);
  border-left: 2px solid var(--c-orange);
  padding-left: 8px;
  margin-top: 4px;
  opacity: .85;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .08em;
  line-height: 1;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s, box-shadow .25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-sunrise);
  color: #FFFFFF;
}

.btn-primary:hover {
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(255, 107, 53, .32);
}

.btn-ghost {
  background: transparent;
  color: var(--c-indigo);
  border-color: var(--c-indigo-light);
}

.btn-ghost:hover {
  background: var(--c-indigo);
  color: #FFFFFF;
}

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

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

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

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-col-4 {
  grid-column: span 4;
}

.bento-col-6 {
  grid-column: span 6;
}

.bento-col-8 {
  grid-column: span 8;
}

.bento-col-12 {
  grid-column: span 12;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .bento-col-4,
  .bento-col-6,
  .bento-col-8 {
    grid-column: span 6;
  }
}

@media (max-width: 767px) {
  .bento-col-4,
  .bento-col-6,
  .bento-col-8,
  .bento-col-12 {
    grid-column: span 12;
  }
}

.bento-card {
  position: relative;
  background: var(--c-cloud);
  border: 1px solid rgba(216, 225, 232, .7);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 160px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

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

.bento-card--dark {
  background: var(--gradient-plateau);
  color: rgba(255, 255, 255, .85);
  border-color: transparent;
}

.bento-card--orange {
  background: var(--gradient-sunrise);
  color: #FFFFFF;
  border-color: transparent;
}

.card-label {
  font-family: var(--font-num);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 8px;
}

.card-num {
  font-family: var(--font-num);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--c-night);
  font-variant-numeric: tabular-nums;
}

.card-title {
  font-size: 1.2rem;
  color: var(--c-night);
  margin-bottom: 6px;
}

.card-desc {
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(46, 52, 64, .68);
}

.bento-card--dark .card-label,
.bento-card--orange .card-label {
  color: var(--c-orange-light);
}

.bento-card--dark .card-num,
.bento-card--dark .card-title,
.bento-card--orange .card-num,
.bento-card--orange .card-title {
  color: #FFFFFF;
}

.bento-card--dark .card-desc,
.bento-card--orange .card-desc {
  color: rgba(255, 255, 255, .7);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  padding: 18px 0 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li + li::before {
  content: "/";
  color: var(--c-line);
  margin-right: 8px;
}

.breadcrumbs a {
  color: var(--c-indigo-light);
}

.breadcrumbs [aria-current] {
  color: var(--c-ink);
}

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-line), var(--c-cloud));
  aspect-ratio: 16 / 10;
}

.media--wide {
  aspect-ratio: 21 / 9;
}

.media--tall {
  aspect-ratio: 4 / 5;
}

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

.media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-size: .78rem;
  letter-spacing: .22em;
  color: rgba(46, 52, 64, .45);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 0;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--c-ink);
}

.legend-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--c-indigo);
}

.legend-swatch--orange {
  background: var(--c-orange);
}

.legend-swatch--line {
  background: var(--c-line);
}

.route-line {
  position: relative;
  height: 2px;
  background: var(--c-line);
  overflow: visible;
}

.route-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-orange);
}

.stripe-diagonal {
  position: relative;
  overflow: hidden;
}

.stripe-diagonal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 107, 53, .06) 12px, rgba(255, 107, 53, .08) 16px);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--c-orange);
  color: #FFFFFF;
  font-weight: 700;
  border-radius: 0 0 12px 12px;
  transition: top .25s;
}

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

.scroll-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  max-width: var(--header-width);
  background: linear-gradient(90deg, var(--c-orange), var(--c-orange-light));
  z-index: 1500;
  border-radius: 0 3px 3px 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .scroll-progress {
    top: 0;
    bottom: auto;
    max-width: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: var(--header-width);
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, .16), transparent 42%),
    linear-gradient(180deg, #0F1B2D 0%, #141E2E 60%, #1B2942 100%);
  border-right: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .72);
}

.header-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-snow);
}

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

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .25), transparent 48%),
    var(--gradient-sunrise);
  clip-path: polygon(50% 0%, 100% 68%, 78% 100%, 22% 100%, 0% 68%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 9px;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
}

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

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: .08em;
  color: var(--c-snow);
  white-space: nowrap;
}

.brand-en {
  font-family: var(--font-num);
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-top: 3px;
  white-space: nowrap;
}

.site-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  min-height: 0;
  overflow-y: auto;
}

.nav-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-item {
  list-style: none;
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: .05em;
  transition: background .25s, color .25s, transform .25s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--c-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .05);
  transform: translateX(4px);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link[aria-current="page"] {
  color: #FFFFFF;
  background: linear-gradient(90deg, rgba(255, 107, 53, .18), rgba(255, 140, 90, .04) 70%);
  box-shadow: inset 3px 0 0 var(--c-orange);
}

.nav-link[aria-current="page"] .nav-index {
  color: var(--c-orange);
}

.nav-index {
  font-family: var(--font-num);
  font-size: .8rem;
  color: var(--c-orange);
  opacity: .9;
  min-width: 1.5em;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.nav-cn {
  font-family: var(--font-display);
  font-weight: 400;
}

.nav-meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.nav-meta-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .5);
}

.nav-meta-point {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--c-orange);
}

.nav-toggle {
  display: none;
}

.nav-close {
  display: none;
}

.nav-backdrop {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .site-header {
    padding: 22px 10px 14px;
    align-items: center;
  }
  .header-top {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 14px;
  }
  .brand {
    flex-direction: column;
    gap: 8px;
  }
  .brand-text {
    display: none;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
  }
  .site-nav {
    margin-top: 28px;
  }
  .nav-list {
    gap: 4px;
    align-items: center;
  }
  .nav-link {
    flex-direction: column;
    gap: 6px;
    padding: 8px 2px;
    justify-content: center;
  }
  .nav-link::after {
    left: 8px;
    right: 8px;
    bottom: 2px;
  }
  .nav-cn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: .78rem;
    letter-spacing: .18em;
  }
  .nav-index {
    font-size: .78rem;
  }
  .nav-meta {
    display: none;
  }
}

@media (max-width: 767px) {
  .site-header {
    top: 0;
    bottom: auto;
    right: 0;
    width: 100%;
    height: 64px;
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    background: rgba(15, 27, 45, .96);
  }
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .brand {
    gap: 10px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-en {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--c-snow);
    font-size: .72rem;
    letter-spacing: .18em;
  }
  .nav-toggle:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--c-snow);
  }
  .nav-toggle-bar {
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--c-snow);
    transition: background .2s;
  }
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-snow);
    transition: transform .25s var(--ease);
  }
  .nav-toggle-bar::before {
    top: -6px;
  }
  .nav-toggle-bar::after {
    top: 6px;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
    transform: translateY(-6px) rotate(-45deg);
  }
  .nav-toggle-label {
    line-height: 1;
  }
  .site-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 86vw);
    z-index: 1300;
    margin: 0;
    padding: 96px 28px 28px;
    justify-content: flex-start;
    background: var(--c-night);
    transform: translateX(-105%);
    transition: transform .38s var(--ease);
    overflow-y: auto;
    border-right: 1px solid rgba(255, 255, 255, .06);
  }
  .site-nav[data-open] {
    transform: translateX(0);
  }
  .nav-inner {
    height: 100%;
  }
  .nav-close {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-display);
    font-size: .85rem;
  }
  .nav-close:hover {
    background: rgba(255, 255, 255, .06);
    color: #FFFFFF;
  }
  .nav-close-x {
    position: relative;
    display: block;
    width: 14px;
    height: 14px;
  }
  .nav-close-x::before,
  .nav-close-x::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
  }
  .nav-close-x::before {
    transform: rotate(45deg);
  }
  .nav-close-x::after {
    transform: rotate(-45deg);
  }
  .nav-close-label {
    font-size: .82rem;
    letter-spacing: .15em;
  }
  .nav-list {
    gap: 4px;
  }
  .nav-link {
    flex-direction: row;
    gap: 16px;
    padding: 13px 14px;
  }
  .nav-link::after {
    left: 14px;
    right: 14px;
    bottom: 5px;
  }
  .nav-cn {
    writing-mode: initial;
    text-orientation: initial;
    font-size: 1rem;
    letter-spacing: .05em;
  }
  .nav-meta {
    margin-top: auto;
    padding-top: 18px;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(15, 27, 45, .55);
    border: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .site-nav[data-open] ~ .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.nav-open {
    overflow: hidden;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--c-night);
  color: rgba(255, 255, 255, .7);
  padding-top: 72px;
  padding-bottom: 32px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-orange), var(--c-orange-light) 22%, transparent 48%, var(--c-indigo-light) 72%, transparent);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
  background: radial-gradient(circle, rgba(255, 107, 53, .08) 0%, transparent 62%);
}

@media (min-width: 768px) {
  .site-footer {
    padding-left: var(--header-width);
  }
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--content-max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
}

.footer-logo {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--gradient-sunrise);
  clip-path: polygon(50% 0%, 100% 68%, 78% 100%, 22% 100%, 0% 68%);
  margin-bottom: 14px;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: var(--c-snow);
  margin-bottom: 12px;
}

.footer-about {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 16px;
  max-width: 360px;
}

.footer-location {
  font-size: .82rem;
  color: rgba(255, 255, 255, .42);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-snow);
  margin-bottom: 16px;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: rgba(255, 255, 255, .6);
  font-weight: 300;
  transition: color .2s, padding-left .2s;
}

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

.footer-contact-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
  font-size: .88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}

.footer-contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-orange);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--content-max));
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .45);
}

.footer-copyright {
  margin: 0;
}

.footer-legals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legals a {
  color: rgba(255, 255, 255, .6);
  transition: color .2s;
}

.footer-legals a:hover {
  color: var(--c-orange);
}

.footer-icp {
  margin: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 56px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--c-indigo);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(15, 27, 45, .2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .25s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--c-orange);
}

.to-top-arrow {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

@media (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 16px;
  }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s ease, transform .65s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
