:root {
  --color-yellow: #FFD700;
  --color-magenta: #FF4081;
  --color-cyan: #00E5FF;
  --color-dark-gray: #1F1F1F;
  --color-tech-blue: #00BFFF;
  --color-light-gray: #F5F5F5;
  --color-white: #FFFFFF;
  --color-black: #0A0A0A;
  --color-light-yellow: #FFF3B0;
  --color-purple: #6A0DAD;

  --text-primary: #F0F0F0;
  --text-secondary: rgba(240, 240, 240, 0.72);
  --text-tertiary: rgba(240, 240, 240, 0.48);
  --text-on-light: #1A1A1A;

  --bg-site: #1F1F1F;
  --bg-header: #0A0A0A;
  --bg-card: #F5F5F5;
  --bg-deep: #2A2A2A;

  --font-heading: "ZCOOL KuaiLe", "Arial Rounded MT Bold", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-body: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  --font-code: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;

  --header-width: 264px;
  --header-h-mobile: 64px;
  --container-width: 1200px;
  --radius: 6px;
  --radius-round: 999px;

  --shadow-card: 0 2px 14px rgba(0, 0, 0, 0.14);
  --shadow-lift: 0 16px 40px rgba(0, 0, 0, 0.24);
  --border-hairline: 1px solid rgba(255, 255, 255, 0.08);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.28s;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  background: var(--bg-site);
  color: var(--text-primary);
  padding-top: var(--header-h-mobile);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-lock {
  overflow: hidden;
}

ul,
ol {
  list-style: none;
}

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

a {
  color: var(--color-cyan);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease-out);
}

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

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

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

::selection {
  background: var(--color-yellow);
  color: #111;
}

[data-year] {
  font-variant-numeric: tabular-nums;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-white);
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
}

h2 {
  font-size: clamp(24px, 3.6vw, 36px);
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

#main-content {
  scroll-margin-top: calc(var(--header-h-mobile) + 8px);
}

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

@media (min-width: 992px) {
  #main-content {
    scroll-margin-top: 24px;
  }
}

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

.section {
  padding-block: clamp(64px, 9vw, 104px);
}

.section--light {
  background: var(--color-light-gray);
  color: var(--text-on-light);
}

.section--black {
  background: var(--bg-header);
}

.section--dark {
  background: var(--bg-site);
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--text-on-light);
}

.section--light .section-desc {
  color: rgba(26, 26, 26, 0.7);
}

.section-kicker {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-cyan);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
  line-height: 1.12;
}

.section-title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 14px;
  background: var(--color-yellow);
  transform: skew(-24deg);
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 72ch;
  margin-bottom: 40px;
}

.page-hero {
  padding: clamp(56px, 8vw, 88px) 0 32px;
}

.page-title {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.page-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1200px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.breadcrumb a {
  color: var(--color-cyan);
  text-decoration: none;
}

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

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius-round);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur) var(--ease-out),
    color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out),
    box-shadow var(--dur) var(--ease-out);
}

.btn--yellow {
  background: var(--color-yellow);
  color: #151515;
}

.btn--yellow:hover {
  background: transparent;
  border-color: var(--color-yellow);
  color: var(--color-yellow);
}

.btn--magenta {
  background: var(--color-magenta);
  color: #fff;
}

.btn--magenta:hover {
  background: transparent;
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

.btn--cyan {
  background: var(--color-cyan);
  color: #111;
}

.btn--cyan:hover {
  background: transparent;
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.btn--tech {
  background: var(--color-tech-blue);
  color: #fff;
}

.btn--tech:hover {
  background: transparent;
  border-color: var(--color-tech-blue);
  color: var(--color-tech-blue);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text-primary);
}

.btn--ghost:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  box-shadow: inset 0 0 0 1px var(--color-yellow);
}

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

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fill, minmax(208px, 1fr));
}

.img-mask {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-deep);
  color: transparent;
}

.img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}

.img-mask:hover img {
  transform: scale(1.04);
}

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

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

.img-mask--ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.img-mask[data-caption]::after {
  content: attr(data-caption);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 14px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  pointer-events: none;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  color: var(--text-on-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

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

.card__media {
  position: relative;
}

.card__body {
  padding: 18px 20px 22px;
}

.card__title {
  font-size: 18px;
  margin-bottom: 8px;
  color: inherit;
}

.card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
}

.card--dark {
  background: var(--bg-deep);
  color: var(--text-primary);
}

.card--dark .card__desc {
  color: var(--text-secondary);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.tag--yellow {
  background: rgba(255, 215, 0, 0.12);
  color: var(--color-yellow);
  border-color: rgba(255, 215, 0, 0.28);
}

.tag--magenta {
  background: rgba(255, 64, 129, 0.12);
  color: var(--color-magenta);
  border-color: rgba(255, 64, 129, 0.28);
}

.tag--cyan {
  background: rgba(0, 229, 255, 0.1);
  color: var(--color-cyan);
  border-color: rgba(0, 229, 255, 0.26);
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.025);
  border: var(--border-hairline);
  border-radius: var(--radius);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.feature:hover {
  background: rgba(255, 215, 0, 0.04);
  border-color: rgba(255, 215, 0, 0.28);
}

.feature__no {
  font-family: var(--font-code);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
  padding-top: 4px;
}

.feature__title {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 8px;
}

.feature__text {
  font-size: 14px;
  color: var(--text-secondary);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
}

.stat__num {
  font-family: var(--font-code);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
}

.stat__label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(0, 229, 255, 0.07);
  color: var(--color-cyan);
  border-bottom: 2px solid rgba(0, 229, 255, 0.26);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  color: var(--text-secondary);
}

.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.side-note {
  background: rgba(0, 229, 255, 0.05);
  border-left: 3px solid var(--color-cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.side-note strong {
  color: var(--color-white);
}

.side-note--yellow {
  background: rgba(255, 215, 0, 0.05);
  border-left-color: var(--color-yellow);
}

.side-note--magenta {
  background: rgba(255, 64, 129, 0.05);
  border-left-color: var(--color-magenta);
}

.rule {
  height: 10px;
  border: none;
  background: repeating-linear-gradient(
    -45deg,
    var(--color-yellow) 0 12px,
    var(--color-magenta) 12px 24px,
    var(--color-cyan) 24px 36px
  );
  opacity: 0.85;
  transform: skewY(-1deg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 999;
  padding: 10px 20px;
  background: var(--color-yellow);
  color: #151515;
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.25s var(--ease-out);
}

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

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 998;
  background: linear-gradient(90deg, var(--color-yellow), var(--color-magenta), var(--color-cyan));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 215;
  height: var(--header-h-mobile);
  background: var(--bg-header);
  border-bottom: var(--border-hairline);
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
}

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

.brand-badge {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--color-yellow);
  color: #151515;
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  transform: rotate(-5deg) skew(-6deg);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}

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

.brand-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--color-white);
}

.brand-en {
  color: var(--color-yellow);
}

.brand-slogan {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-cyan);
  white-space: nowrap;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--dur), background var(--dur);
}

.nav-toggle:hover {
  border-color: var(--color-yellow);
  background: rgba(255, 215, 0, 0.07);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.nav-toggle-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle-box i {
  width: 18px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

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

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

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

.site-nav {
  position: fixed;
  top: var(--header-h-mobile);
  left: 0;
  bottom: 0;
  z-index: 216;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(320px, 86vw);
  margin: 0;
  padding: 20px 16px 32px;
  background: var(--bg-header);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.34s var(--ease-out);
  overflow-y: auto;
}

.site-nav[data-open] {
  transform: translateX(0);
  box-shadow: 12px 0 32px rgba(0, 0, 0, 0.4);
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, padding-left 0.25s;
}

.nav-link + .nav-link {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-link:hover {
  background: rgba(255, 64, 129, 0.08);
  color: var(--color-magenta);
}

.nav-link[aria-current="page"] {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-yellow);
}

.header-note {
  display: none;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  border-left: 2px solid var(--color-magenta);
  padding-left: 12px;
}

.particles {
  display: none;
}

.particles i {
  position: absolute;
  border-radius: 50%;
  opacity: 0.8;
}

.particles i:nth-child(1) {
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  animation: particleDrift 3.4s ease-in-out infinite alternate;
}

.particles i:nth-child(2) {
  top: 0;
  left: 34px;
  width: 4px;
  height: 4px;
  background: var(--color-cyan);
  animation: particleDrift 4.2s ease-in-out infinite alternate 0.5s;
}

.particles i:nth-child(3) {
  top: 30px;
  left: 56px;
  width: 5px;
  height: 5px;
  background: var(--color-magenta);
  animation: particleDrift 3.8s ease-in-out infinite alternate 0.9s;
}

.particles i:nth-child(4) {
  top: 48px;
  left: 22px;
  width: 3px;
  height: 3px;
  background: var(--color-tech-blue);
  animation: particleDrift 4.6s ease-in-out infinite alternate 1.4s;
}

@keyframes particleDrift {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-14px) scale(1.25);
  }
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-backdrop[data-open] {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: var(--bg-header);
  border-top: var(--border-hairline);
}

.footer-band {
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--color-yellow) 0 34%,
    var(--color-magenta) 34% 78%,
    var(--color-cyan) 78% 100%
  );
}

.footer-shell {
  width: min(var(--container-width), 100% - 40px);
  margin-inline: auto;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-trust {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-tertiary);
  max-width: 380px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-title::before {
  content: "▍";
  color: var(--color-magenta);
  margin-right: 6px;
}

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

.footer-list a {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.25s, padding-left 0.25s;
}

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

.footer-contact .footer-list {
  gap: 14px;
}

.footer-contact .footer-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-tertiary);
  word-break: break-word;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  font-size: 12px;
  color: var(--text-tertiary);
}

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

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

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 768px) {
  .grid > [data-reveal]:nth-child(2) {
    --reveal-delay: 0.08s;
  }
  .grid > [data-reveal]:nth-child(3) {
    --reveal-delay: 0.16s;
  }
  .grid > [data-reveal]:nth-child(4) {
    --reveal-delay: 0.24s;
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 0;
    padding-left: var(--header-width);
  }

  .scroll-bar {
    left: var(--header-width);
    right: 0;
  }

  .site-header {
    inset: 0 auto 0 0;
    width: var(--header-width);
    height: 100vh;
    border-right: var(--border-hairline);
    border-bottom: none;
  }

  .header-shell {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 24px 24px;
    height: 100%;
  }

  .brand {
    align-self: flex-start;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: 100%;
    height: auto;
    z-index: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 36px;
    padding: 24px 0 0;
    background: transparent;
    border-right: 0;
    border-top: var(--border-hairline);
    transform: none;
    transition: none;
    overflow: visible;
    box-shadow: none;
    counter-reset: navIndex;
  }

  .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px 11px 20px;
    font-size: 15px;
    font-weight: 600;
    border-left: 3px solid transparent;
    border-radius: 0;
    border-top: 0;
  }

  .nav-link + .nav-link {
    border-top: 0;
  }

  .nav-link::before {
    counter-increment: navIndex;
    content: "0" counter(navIndex);
    font-family: var(--font-code);
    font-size: 11px;
    font-weight: 700;
    min-width: 22px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s;
  }

  .nav-link:hover {
    background: rgba(255, 215, 0, 0.06);
    color: var(--color-yellow);
    border-left-color: var(--color-yellow);
    padding-left: 28px;
  }

  .nav-link:hover::before {
    color: var(--color-magenta);
  }

  .nav-link[aria-current="page"] {
    background: rgba(0, 229, 255, 0.07);
    color: var(--color-cyan);
    border-left-color: var(--color-cyan);
  }

  .nav-link[aria-current="page"]::before {
    color: var(--color-cyan);
  }

  .header-note {
    display: block;
  }

  .particles {
    display: block;
    position: absolute;
    bottom: 22px;
    left: 20px;
    width: 90px;
    height: 70px;
    pointer-events: none;
  }

  .nav-backdrop {
    display: none;
  }
}

@media (min-width: 1200px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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

  .particles i {
    animation: none;
  }
}
