:root {
  --wc-primary: var(--wh-primary, #19c3a8);
  --wc-secondary: var(--wh-secondary, #7ceec6);
  --wc-bg: var(--wh-bg, #05080d);
  --wc-surface: var(--wh-surface, #111b28);
  --wc-text: var(--wh-text, #f4f8fc);
  --wc-muted: var(--wh-muted, #98a8b9);
  --wc-on-primary: var(--on-primary, #03120f);
  --wc-radius: 14px;
  --wc-content: 1200px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Hiragino Sans GB", "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  color: var(--wc-text);
  background: var(--wc-bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

.site-shell {
  min-height: 100vh;
  background: var(--wc-bg);
}

.site-header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 20;
}

.site-header__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.site-shell--home {
  min-height: 100vh;
  min-height: 100dvh;
}

.wc-home-body {
  overflow: hidden;
}

.wc-home {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.wc-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("/images/starfield-bg.webp");
  opacity: 0.24;
  z-index: 0;
}

.wc-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 68%,
    rgba(0, 0, 0, 0.94) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.wc-home__header {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 40;
}

.wc-home__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.wc-home__pages {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.wc-home__page {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.wc-home__page.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wc-home__page--1.is-exit {
  opacity: 1;
  visibility: visible;
}

.wc-home__page-copy {
  position: absolute;
  left: 50%;
  bottom: 140px;
  width: min(1260px, calc(100% - 40px));
  text-align: center;
  transform: translate(-50%, 24px);
  opacity: 0;
  z-index: 12;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.wc-home__page.is-active .wc-home__page-copy {
  opacity: 1;
  transform: translate(-50%, 0);
}

.wc-home__page-copy h1,
.wc-home__page-copy h2 {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.wc-home__page-copy p {
  width: min(820px, 92%);
  margin: 10px auto 0;
  font-size: 14px;
  line-height: 24px;
  color: rgba(244, 248, 252, 0.92);
}

.wc-home__page-bg--hero {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(2500px, 174vw);
  aspect-ratio: 25 / 16;
  transform: translate(-50%, -50%);
  transform-origin: 50% 44.25%;
  background: center / contain no-repeat url("/images/hero-bg.webp");
  opacity: 0;
  z-index: 4;
}

.wc-home__page--1.is-active .wc-home__page-bg--hero {
  opacity: 1;
  animation: wc-home-fade-in 0.5s linear both, wc-home-hero-spin 300s linear infinite;
}

.wc-home__page--1.is-exit .wc-home__page-bg--hero {
  opacity: 1;
  animation: wc-home-hero-exit 0.4s linear both;
}

.wc-home__page--1.is-exit .wc-home__page-copy {
  opacity: 0;
}

.wc-home__page-glow {
  position: absolute;
  top: 50%;
  width: min(760px, 58vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(124, 238, 198, 0.24) 0%, rgba(17, 27, 40, 0.18) 42%, rgba(5, 8, 13, 0) 74%),
    radial-gradient(circle at center, rgba(25, 195, 168, 0.2) 0%, rgba(5, 8, 13, 0) 72%);
  filter: blur(18px);
  opacity: 0;
  z-index: 3;
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.wc-home__page--2.is-active .wc-home__page-glow {
  opacity: 1;
}

.wc-home__page-glow--left {
  left: 12%;
  transform: translate3d(-80px, -50%, 0);
}

.wc-home__page-glow--right {
  right: 8%;
  transform: translate3d(80px, -50%, 0);
}

.wc-home__page--2.is-active .wc-home__page-glow--left {
  transform: translate3d(0, -50%, 0);
}

.wc-home__page--2.is-active .wc-home__page-glow--right {
  transform: translate3d(0, -50%, 0);
}

.wc-home__starfield {
  position: absolute;
  inset: 0;
  left: -9999px;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.wc-home__starfield.is-visible {
  left: 0;
  opacity: 1;
}

.wc-home__star-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(2400px, 180vw);
  aspect-ratio: 6 / 5;
  transform: translate(-50%, -50%);
  background: center / cover no-repeat url("/images/starfield-bg.webp");
  transform-origin: center center;
}

.wc-home__star-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1740px, 128vw);
  aspect-ratio: 145 / 113;
  transform: translate(-50%, -50%);
  background: center / contain no-repeat url("/images/star-overlay.webp");
  transform-origin: center center;
  opacity: 0.78;
}

.wc-home__starfield.is-visible .wc-home__star-bg {
  animation: wc-home-fade-in 2s linear both, wc-home-star-bg 30s linear both;
}

.wc-home__starfield.is-visible .wc-home__star-box {
  animation: wc-home-star-box 20s linear both;
}

.wc-home__light-wrap {
  position: absolute;
  top: 50%;
  left: 15%;
  width: min(1000px, 70vw);
  aspect-ratio: 1000 / 460;
  opacity: 0;
  z-index: 6;
}

.wc-home__light-band,
.wc-home__light-core,
.wc-home__meteor {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wc-home__light-band {
  width: min(476px, 38vw);
  aspect-ratio: 119 / 18;
}

.wc-home__light-band--main {
  left: 0;
  bottom: 50%;
  margin-bottom: -18px;
  background-image: url("/images/light-band-alt.webp");
}

.wc-home__light-band--top {
  top: 0;
  left: 26%;
  background-image: url("/images/light-band.webp");
  transform: scale(0.8);
}

.wc-home__light-band--bottom {
  bottom: 0;
  left: 19%;
  background-image: url("/images/light-band.webp");
  transform: scale(0.8);
}

.wc-home__light-band--side {
  top: 50%;
  right: 0;
  margin-top: -18px;
  background-image: url("/images/light-band.webp");
  transform: scale(0.8);
}

.wc-home__light-core {
  width: min(1920px, 138vw);
  aspect-ratio: 16 / 9;
  left: -92%;
  bottom: 50%;
  margin-bottom: -52.3%;
  background-image: url("/images/light-core.webp");
  opacity: 0;
  transform: scale(0.8);
}

.wc-home__meteor {
  top: 0;
  left: 0;
  width: min(576px, 42vw);
  aspect-ratio: 576 / 401;
  background-image: url("/images/meteor.webp");
  opacity: 0;
  z-index: 6;
}

.wc-home__page--4.is-active .wc-home__light-wrap {
  opacity: 1;
  animation: wc-home-light-wrap 10s linear infinite;
}

.wc-home__page--4.is-active .wc-home__light-band--main,
.wc-home__page--4.is-active .wc-home__light-band--bottom {
  animation: wc-home-light-band-short 10s linear infinite;
}

.wc-home__page--4.is-active .wc-home__light-band--top,
.wc-home__page--4.is-active .wc-home__light-band--side {
  animation: wc-home-light-band-long 10s linear infinite;
}

.wc-home__page--4.is-active .wc-home__light-core {
  animation: wc-home-light-core 10s linear infinite;
}

.wc-home__page--4.is-active .wc-home__meteor {
  opacity: 1;
  animation: wc-home-meteor 10s linear infinite;
}

.wc-home__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.wc-home__actions {
  position: absolute;
  left: 50%;
  bottom: 70px;
  display: flex;
  gap: 20px;
  transform: translateX(-50%);
  z-index: 30;
}

.wc-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 38px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.wc-home__button:hover {
  background: rgba(17, 27, 40, 0.84);
  border-color: var(--wc-secondary);
  color: var(--wc-secondary);
}

.wc-home__controls {
  position: absolute;
  top: 50%;
  right: 50px;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
  z-index: 30;
}

.wc-home__controls button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(152, 168, 185, 0.9);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.wc-home__controls button.is-active,
.wc-home__controls button:hover {
  background: #fff;
  border-color: #fff;
}

.wc-home__footer {
  position: absolute;
  inset: auto 0 12px;
  z-index: 30;
  text-align: center;
}

.wc-home__footer p {
  margin: 0;
  color: #4c4c4c;
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--wc-bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("/images/starfield-bg.webp");
  opacity: 0.24;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 66%,
    var(--wc-bg) 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero__visual {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(2500px, 174vw);
  aspect-ratio: 25 / 16;
  transform: translate(-50%, -50%);
  transform-origin: 50% 44.25%;
  background: center / contain no-repeat url("/images/hero-bg.webp");
  z-index: 2;
  animation: hero-spin 300s linear infinite;
}

.hero__visual-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1740px, 128vw);
  aspect-ratio: 145 / 113;
  transform: translate(-50%, -48%);
  background: center / contain no-repeat url("/images/star-overlay.webp");
  opacity: 0.36;
  z-index: 2;
  pointer-events: none;
}

.hero__copy {
  position: absolute;
  left: 50%;
  bottom: 140px;
  transform: translateX(-50%);
  width: min(1260px, calc(100% - 40px));
  text-align: center;
  z-index: 8;
}

.hero__title {
  margin: 0;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero__desc {
  margin: 10px auto 0;
  width: min(800px, 92%);
  font-size: 14px;
  line-height: 24px;
  color: var(--wc-text);
  opacity: 0.92;
}

.hero__actions {
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9;
}

.hero-btn {
  width: 156px;
  height: 38px;
  border: 2px solid var(--wc-text);
  border-radius: 0;
  color: var(--wc-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.hero-btn:hover {
  background: var(--wc-surface);
  border-color: var(--wc-secondary);
  color: var(--wc-secondary);
}

.hero-dots {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  display: grid;
  gap: 12px;
}

.hero-dots span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--wc-muted);
  background: transparent;
}

.hero-dots .is-active {
  background: var(--wc-text);
  border-color: var(--wc-text);
}

.screens {
  position: relative;
  z-index: 4;
}

.screen {
  position: relative;
  min-height: clamp(480px, 72vh, 760px);
  padding: 84px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wc-bg);
}

.screen--star {
  overflow: hidden;
}

.screen--star::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("/images/starfield-bg.webp");
  opacity: 0.3;
  z-index: 0;
}

.screen--star::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    center 40% / min(980px, 86vw) auto no-repeat url("/images/light-core.webp"),
    center 58% / min(880px, 80vw) auto no-repeat url("/images/meteor.webp");
  opacity: 0.3;
  z-index: 0;
}

.screen__card {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
  padding: 42px 28px;
  border-radius: var(--wc-radius);
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.screen__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
  font-weight: 400;
}

.screen__desc {
  margin: 14px auto 0;
  width: min(800px, 100%);
  color: var(--wc-muted);
  font-size: 16px;
  line-height: 1.9;
}

.cta-panel {
  width: min(var(--wc-content), calc(100% - 40px));
  margin: 0 auto 86px;
  border: 1px solid var(--wc-surface);
  border-radius: var(--wc-radius);
  background: var(--wc-surface);
  padding: 34px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.25;
}

.cta-panel p {
  margin: 0;
  color: var(--wc-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.btn-primary {
  background: var(--wc-primary);
  color: var(--wc-on-primary);
  border: 1px solid var(--wc-primary);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--wc-secondary);
  color: var(--wc-secondary);
}

.btn-primary:hover,
.btn-ghost:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--wc-surface);
  background: var(--wc-bg);
  text-align: center;
  color: var(--wc-muted);
  font-size: 14px;
  padding: 22px 16px 28px;
}

.inner-hero {
  position: relative;
  padding: 120px 20px 70px;
  text-align: center;
  background: var(--wc-bg);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center / cover no-repeat url("/images/starfield-bg.webp");
  opacity: 0.22;
}

.inner-hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--wc-content), 100%);
  margin: 0 auto;
}

.inner-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.16;
  letter-spacing: 0.01em;
}

.inner-hero p {
  margin: 14px auto 0;
  max-width: 760px;
  color: var(--wc-muted);
  font-size: 16px;
}

.content-shell {
  width: min(var(--wc-content), calc(100% - 40px));
  margin: 30px auto 80px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  border-radius: var(--wc-radius);
  padding: 22px 20px;
}

.article-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.article-card p {
  margin: 10px 0 14px;
  color: var(--wc-muted);
}

.article-card a {
  color: var(--wc-secondary);
  font-weight: 600;
}

.single-grid {
  width: min(var(--wc-content), calc(100% - 40px));
  margin: 30px auto 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
}

.single-article {
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  border-radius: var(--wc-radius);
  padding: 24px 22px;
}

.single-article h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
}

.single-article p,
.single-article li {
  color: var(--wc-muted);
}

.single-article h2,
.single-article h3 {
  margin-top: 1.5em;
}

.single-aside {
  align-self: start;
  position: sticky;
  top: 24px;
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  border-radius: var(--wc-radius);
  padding: 20px 18px;
}

.single-aside p {
  margin: 0 0 12px;
  color: var(--wc-muted);
}

.single-tags {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(15, 23, 42, 0.16);
}

.single-tags h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.tag-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.26);
  color: var(--wc-secondary);
  background: rgba(37, 99, 235, 0.08);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
}

.tag-chip:hover {
  background: rgba(37, 99, 235, 0.16);
}

.tag-all-link {
  display: inline-block;
  margin-top: 12px;
}

.related-block {
  margin-top: 26px;
  padding: 16px 16px 8px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.04);
}

.related-block h2 {
  margin: 0;
  font-size: 22px;
}

.related-block p {
  margin: 8px 0 12px;
}

.related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list li {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.related-list li:first-child {
  border-top: 0;
}

.related-list a {
  color: var(--wc-secondary);
  font-weight: 600;
}

.card-tags {
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-terms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.tag-term-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  border-radius: var(--wc-radius);
  padding: 16px 14px;
  text-decoration: none;
}

.tag-term-card strong {
  font-size: 17px;
  color: var(--wc-primary);
}

.tag-term-card span {
  color: var(--wc-muted);
  font-size: 14px;
}

.download-wrap {
  width: min(880px, calc(100% - 40px));
  margin: 34px auto 84px;
}

.download-card {
  border: 1px solid var(--wc-surface);
  background: var(--wc-surface);
  border-radius: var(--wc-radius);
  padding: 32px 26px;
  text-align: center;
}

.download-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.download-card p {
  margin: 16px auto 0;
  max-width: 680px;
  color: var(--wc-muted);
}

.download-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.download-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--wc-muted);
}

@keyframes hero-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg) scale(4);
  }
}

@keyframes wc-home-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes wc-home-hero-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg) scale(4);
  }
}

@keyframes wc-home-hero-exit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) rotate(-100deg) scale(4);
    opacity: 0;
  }
}

@keyframes wc-home-star-bg {
  0% {
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) rotate(10deg) scale(1.2);
  }
}

@keyframes wc-home-star-box {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.98);
  }
}

@keyframes wc-home-light-wrap {
  0% {
    transform: translate3d(5000px, -50%, 0) scale(0.8);
  }
  10%,
  50% {
    transform: translate3d(0, -50%, 0) scale(0.8);
  }
  60%,
  100% {
    transform: translate3d(-5000px, -50%, 0) scale(0.8);
  }
}

@keyframes wc-home-light-band-short {
  0%,
  10% {
    transform: translate3d(0, 0, 0) scale(0.8);
  }
  50%,
  100% {
    transform: translate3d(-50px, 0, 0) scale(0.8);
  }
}

@keyframes wc-home-light-band-long {
  0%,
  10% {
    transform: translate3d(0, 0, 0) scale(0.8);
  }
  50%,
  100% {
    transform: translate3d(-100px, 0, 0) scale(0.8);
  }
}

@keyframes wc-home-light-core {
  0%,
  10% {
    transform: translate3d(0, 0, 0) scale(0.8);
    opacity: 0;
  }
  16%,
  28% {
    opacity: 1;
  }
  22%,
  34% {
    opacity: 0;
  }
  50%,
  100% {
    transform: translate3d(-50px, 0, 0) scale(0.8);
    opacity: 0;
  }
}

@keyframes wc-home-meteor {
  0%,
  65% {
    transform: translate3d(-1000px, 1000px, 0);
  }
  80%,
  100% {
    transform: translate3d(1000px, -1000px, 0);
  }
}

@media (max-width: 1023px) {
  .site-header__logo {
    width: 96px;
    height: 96px;
  }

  .hero__copy {
    bottom: 130px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.24;
  }

  .hero__desc {
    width: min(680px, 96%);
    font-size: 15px;
    line-height: 1.75;
  }

  .hero__actions {
    width: calc(100% - 32px);
    justify-content: center;
    bottom: 66px;
    gap: 12px;
  }

  .hero-dots {
    display: none;
  }

  .article-list {
    grid-template-columns: 1fr;
  }

  .single-grid {
    grid-template-columns: 1fr;
  }

  .single-aside {
    position: static;
  }

  .wc-home__header {
    top: 16px;
    left: 16px;
  }

  .wc-home__logo {
    width: 96px;
    height: 96px;
  }

  .wc-home__page-copy {
    bottom: 156px;
    width: min(760px, calc(100% - 32px));
  }

  .wc-home__page-copy h1,
  .wc-home__page-copy h2 {
    font-size: 30px;
    line-height: 1.24;
  }

  .wc-home__page-copy p {
    width: min(680px, 96%);
    font-size: 15px;
    line-height: 1.75;
  }

  .wc-home__actions {
    bottom: 82px;
    gap: 12px;
    width: calc(100% - 32px);
    justify-content: center;
  }

  .wc-home__controls {
    top: auto;
    right: 50%;
    bottom: 136px;
    grid-auto-flow: column;
    transform: translateX(50%);
  }

  .wc-home__light-wrap {
    width: 84vw;
    left: 8%;
  }

  .wc-home__meteor {
    width: 46vw;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 16px;
    left: 16px;
  }

  .hero__title {
    font-size: 24px;
  }

  .hero__desc {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-btn {
    width: 146px;
    height: 40px;
    font-size: 16px;
  }

  .screen {
    padding: 70px 14px;
  }

  .screen__card {
    padding: 30px 18px;
  }

  .screen__desc {
    font-size: 15px;
  }

  .wc-home__page-copy {
    bottom: 196px;
  }

  .wc-home__page-copy h1,
  .wc-home__page-copy h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .wc-home__page-copy p {
    font-size: 14px;
    line-height: 1.7;
  }

  .wc-home__button {
    width: 146px;
    height: 40px;
    font-size: 16px;
  }

  .wc-home__controls {
    bottom: 144px;
  }

  .wc-home__footer {
    bottom: 18px;
  }
}

@media (max-height: 760px) {
  .wc-home__page-copy {
    bottom: 128px;
  }

  .wc-home__actions {
    bottom: 52px;
  }

  .wc-home__footer {
    bottom: 8px;
  }
}

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