/*
 * 스페셜포스 리마스터 공통 레이아웃과 메인 화면 스타일입니다.
 * 서브 페이지는 이 파일 위에 화면별 CSS를 추가합니다.
 */

:root {
  --site-bg: #ffffff;
  --site-ink: #161616;
  --site-muted: #5a5a5a;
  --site-header: #10131a;
  --site-yellow: #ffc000;
  --site-yellow-deep: #ffa600;
  --site-cream: #fffaea;
  --site-footer-bg: #f3f0e7;
  --site-line: #e3e3e3;
  --site-content-width: 1720px;
  --site-shadow: 0 22px 60px rgba(204, 155, 0, 0.18);
  --home-content-width: 1520px;
  /* 메인의 배경형 섹션이 공유하는 세로 기준입니다. 값을 한 곳에서 조절합니다. */
  --home-band-height: 78vh;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: var(--site-bg);
  color: var(--site-ink);
  font-family: Pretendard, "Pretendard Variable", Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
}

:focus-visible {
  outline: 3px solid var(--site-yellow);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: #000000;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

/* 메인 화면은 피그마의 넓은 좌우 여백을 별도 기준으로 사용합니다. */
.home-page main .site-container,
.game-info-page .game-info-main .site-container {
  width: min(calc(100% - 96px), var(--home-content-width));
}

/* 공통 헤더 */
.site-header {
  position: relative;
  z-index: 100;
  min-height: 92px;
  background: var(--site-header);
  color: #ffffff;
}

.site-header__inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.site-brand,
.game-site-brand {
  display: flex;
  width: 204px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
}

.site-brand__icon,
.game-site-brand__icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-brand__wordmark,
.site-brand__text,
.game-site-brand__wordmark {
  width: 163px;
  height: 40px;
  object-fit: contain;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.4vw, 42px);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 700;
}

.site-navigation > a:not(.site-navigation__cta) {
  position: relative;
  padding-block: 34px;
  white-space: nowrap;
}

.site-navigation > a:not(.site-navigation__cta)::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--site-yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: 160ms ease;
}

.site-navigation > a:hover::after,
.site-navigation > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-navigation__cta {
  display: inline-grid;
  min-width: 160px;
  min-height: 54px;
  place-items: center;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(110deg, var(--site-yellow), var(--site-yellow-deep));
  box-shadow: inset 0 4px 2px rgba(255, 255, 255, 0.35);
  color: #000000;
  font-size: 18px;
}

.site-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
}

.site-menu-button__bars,
.site-menu-button__bars::before,
.site-menu-button__bars::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.site-menu-button__bars::before {
  transform: translateY(-7px);
}

.site-menu-button__bars::after {
  transform: translateY(5px);
}

/* 공통 서브 페이지 배너의 기본 틀 */
.page-hero {
  padding-block: 90px 70px;
}

.page-hero__frame {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 30px;
  background: #171717;
}

/* 메인 배너 */
.main-hero {
  padding-block: 0;
}

/*
 * 배너는 화면 폭을 가득 채웁니다. 좌우 여백과 라운드를 두지 않아
 * 이미지 자체가 배너 전체를 담당하게 합니다.
 */
.main-hero__frame {
  width: 100%;
}

.main-hero__stage {
  position: relative;
  aspect-ratio: 172 / 65;
  overflow: hidden;
  isolation: isolate;
  touch-action: pan-y;
  cursor: grab;
}

.main-hero__stage:active {
  cursor: grabbing;
}

.main-hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000000;
}

.main-hero__backdrop::after {
  position: absolute;
  inset: 0;
  /* 하단 조작부 가독성만 확보하고 배너 이미지는 최대한 밝게 유지합니다. */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent 30%);
  content: "";
}

    .main-hero__backdrop img {
        width: 1920px;
        height: 100%;
        object-fit: cover;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

.main-hero__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: min(calc(100% - 96px), var(--home-content-width));
  margin-inline: auto;
  padding-bottom: 32px;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}


.main-hero__backdrop a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* 화면 전체 너비를 차지 */
    height: 100%;
    z-index: 2; /* 마우스 클릭을 가장 먼저 받도록 맨 위로 올림 */
}

.main-hero__count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
}

.main-hero__count strong {
  color: inherit;
}

.main-hero__progress {
  display: grid;
  width: 280px;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.main-hero__progress span {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.main-hero__progress .is-active {
  background: #ffffff;
}

.icon-button {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  padding: 6px;
  background: transparent;
}

.icon-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 원본 자산은 상하 화살표이므로, 캐러셀의 실제 이동 방향에 맞춰 좌우로 회전합니다. */
[data-hero-prev] img,
[data-operator-prev] img,
[data-weapon-prev] img {
  transform: rotate(-90deg);
}

[data-hero-next] img,
[data-operator-next] img,
[data-weapon-next] img {
  transform: rotate(90deg);
}

/* 공통 메인 섹션 */
.home-section {
  padding-block: 100px;
}

.section-heading {
  display: flex;
  margin-bottom: 42px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2 {
  font-size: clamp(48px, 4vw, 70px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin-top: 12px;
  color: #505050;
  font-size: 28px;
}

.section-heading__more {
  padding: 13px 20px;
  border-radius: 14px;
  background: #ffffff;
  font-size: 20px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

/* 전체보기는 목록으로 나가는 유일한 통로라 호버 반응을 분명히 줍니다. */
.section-heading__more:hover,
.section-heading__more:focus-visible {
  background: linear-gradient(110deg, #ffc000, #ffad00);
  color: #11141b;
  box-shadow: 0 10px 24px rgba(204, 155, 0, 0.28);
  transform: translateY(-2px);
}

/* 새소식 카드 */
.news-section {
  background: var(--site-cream);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  /* 제목 줄 수가 달라도 카드 높이를 맞춰 한 카드만 튀어 보이지 않게 합니다. */
  align-items: stretch;
}

.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid #e2dac3;
  border-radius: 16px;
  background: #ffffff;
  transition: 180ms ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: #cc9b00;
  box-shadow: var(--site-shadow);
  transform: translateY(-10px);
}

.news-card > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2.06 / 1;
  object-fit: cover;
}

/* PNG 원본의 투명한 가장자리를 크롭해 카드 이미지가 양끝까지 차도록 합니다. */
.news-card:nth-child(2) > img {
  object-position: center;
  transform: none;
}

.news-card__body {
  display: flex;
  min-height: 200px;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.news-card__body > strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}

.news-card__body > span:not(.news-card__meta) {
  margin-top: 10px;
  color: #303030;
  font-size: 18px;
  line-height: 1.5;
}

.news-card__meta {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: #acacac;
  font-size: 16px;
}

.news-card__meta b {
  color: #000000;
  font-size: 26px;
  font-weight: 400;
}

/* 오퍼레이터와 무기 */
.showcase-section {
  padding-block: 100px 80px;
}

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

.showcase-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  touch-action: pan-y;
}

.showcase-card--operator {
  background: #fffaf0;
}

.showcase-card--weapon {
  background: #fff8df;
}

.showcase-card__copy {
  position: relative;
  z-index: 3;
  width: 58%;
  padding: 50px 0 30px 42px;
}

.showcase-card__kicker {
  color: #505050;
  font-size: 17px;
}

.showcase-card__kicker strong {
  color: #ffae00;
}

.showcase-card--weapon .showcase-card__kicker {
  white-space: nowrap;
}

.showcase-card h2 {
  margin-top: 24px;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.showcase-card__copy > p:not(.showcase-card__kicker) {
  min-height: 0;
  margin-top: 12px;
  color: #505050;
  font-size: 17px;
}

.yellow-button {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  border-radius: 8px;
  background: linear-gradient(110deg, var(--site-yellow), var(--site-yellow-deep));
  color: #000000;
  font-size: 15px;
  font-weight: 800;
}

.showcase-card__controls {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 14px;
  color: #a5a5a5;
}

.showcase-card__controls i {
  width: 220px;
  height: 2px;
  background: linear-gradient(
    90deg,
    #a5a5a5 var(--showcase-progress, 20%),
    rgba(165, 165, 165, 0.22) var(--showcase-progress, 20%)
  );
  transition: background 220ms ease;
}

.showcase-card__operator,
.showcase-card__operator-group,
.showcase-card__weapon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transition: 240ms ease;
}

/* 부대별 캐릭터는 세로형 컷아웃이라 카드 우측 하단 기준으로 세워 보여줍니다. */
.showcase-card__operator {
  right: 16px;
  bottom: 0;
  width: min(46%, 340px);
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

.showcase-card__operator.is-unit {
  right: 0;
  bottom: -4%;
  width: 54%;
  height: 94%;
  clip-path: none;
  object-fit: contain;
  object-position: center bottom;
}

.showcase-card__operator-group {
  display: none;
}

.showcase-card__weapon {
  right: 15px;
  bottom: 52px;
  width: 340px;
  height: 105px;
  filter: drop-shadow(0 18px 20px rgba(92, 66, 10, 0.2));
  object-fit: contain;
  object-position: center;
}

.showcase-card__weapon.is-melee {
  bottom: 68px;
  width: 360px;
  height: 70px;
}

.showcase-card--operator .showcase-card__copy {
  width: 58%;
  height: 100%;
  box-sizing: border-box;
}

/* 두 카드의 버튼과 진행 바는 같은 하단 좌측 기준선을 공유합니다. */
.showcase-card--weapon .showcase-card__copy {
  height: calc(100% - 75px);
  box-sizing: border-box;
}

/* 무기 설명은 줄바꿈 없이 한 줄로 유지합니다. */
.showcase-card--weapon .showcase-card__copy > p:not(.showcase-card__kicker) {
  white-space: nowrap;
}

.showcase-card--operator .yellow-button {
  position: absolute;
  bottom: 88px;
  left: 42px;
}

.showcase-card--operator .showcase-card__controls {
  position: absolute;
  bottom: 26px;
  left: 42px;
  margin-top: 0;
}

.showcase-card--weapon .showcase-card__controls {
  position: absolute;
  bottom: 26px;
  left: 42px;
  margin-top: 0;
}

.weapon-tabs {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid #e7e0ca;
}

.weapon-tabs button {
  padding: 24px 12px;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #8b8b8b;
}

.weapon-tabs button[aria-selected="true"] {
  border-color: var(--site-yellow);
  background: rgba(255, 192, 0, 0.1);
  color: #ffae00;
  font-weight: 800;
}

/* 게임 특징 */
.features-section {
  padding-top: 80px;
}

.section-heading--features {
  justify-content: flex-start;
}

.features-grid {
  display: flex;
  min-height: 600px;
}

.feature-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 600px;
  flex: 1 1 0;
  overflow: hidden;
  border: 1px solid var(--site-yellow);
  background: #000000;
  transition: flex-grow 420ms ease, box-shadow 260ms ease;
}

.feature-card__destination {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-card::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #000000);
  content: "";
}

.feature-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms ease;
}

.feature-card:hover > img,
.feature-card:focus-visible > img {
  transform: scale(1.04);
}

.feature-card:hover,
.feature-card:focus-within,
.feature-card.is-expanded {
  flex-grow: 5.5;
  box-shadow: inset 0 0 0 1px rgba(255, 226, 92, 0.75);
}

.feature-card__heading {
  position: static;
}

.feature-card__icon {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 2px solid var(--site-yellow);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
}

.feature-card__icon img {
  width: 28px;
  height: 28px;
}

.feature-card strong {
  position: absolute;
  right: 30px;
  bottom: 34px;
  left: 30px;
  z-index: 2;
  color: #ffffff;
  font-size: 26px;
  white-space: nowrap;
}

.feature-card__video,
.feature-card__description {
  position: absolute;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease 80ms, transform 260ms ease;
}

.feature-card__video {
  top: 142px;
  left: 36px;
  display: grid;
  width: min(72%, 640px);
  height: min(52%, 320px);
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 192, 0, 0.72);
  background: linear-gradient(120deg, rgba(0, 20, 26, 0.4), rgba(0, 0, 0, 0.9));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.68);
  transform: translateY(12px);
}

/* 열린 카드에서만 iframe이 생성되므로 영역을 가득 채우게 둡니다. */
.feature-card__video iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.feature-card__video-fallback {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border: 1px solid rgba(255, 192, 0, 0.68);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  pointer-events: auto;
}

.feature-card__video-fallback:hover,
.feature-card__video-fallback:focus-visible {
  background: var(--site-yellow);
  color: #111111;
}

.feature-card__play {
  color: var(--site-yellow);
  font-size: 72px;
  line-height: 1;
  text-shadow: 0 0 22px rgba(255, 192, 0, 0.28);
}

.feature-card__play::before {
  content: "▶";
}

.feature-card__description {
  right: 36px;
  bottom: 42px;
  left: 36px;
  overflow: hidden;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(10px);
}

.feature-card:hover .feature-card__video,
.feature-card:hover .feature-card__description,
.feature-card:focus-within .feature-card__video,
.feature-card:focus-within .feature-card__description,
.feature-card.is-expanded .feature-card__video,
.feature-card.is-expanded .feature-card__description {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover .feature-card__video,
.feature-card:focus-within .feature-card__video,
.feature-card.is-expanded .feature-card__video {
  pointer-events: auto;
}

.feature-card:hover strong,
.feature-card:focus-within strong,
.feature-card.is-expanded strong {
  top: 40px;
  right: auto;
  bottom: auto;
  left: 108px;
  font-size: 24px;
  white-space: nowrap;
}

/* 메인 전용 로고는 투명 여백이 없는 자산을 사용해 피그마의 인지 크기를 맞춥니다. */
.home-page .site-brand {
  width: 226px;
  height: 48px;
  gap: 7px;
}

.home-page .site-brand__icon {
  width: 42px;
  height: 42px;
}

.home-page .site-brand__wordmark {
  width: 177px;
  height: 43px;
}

/* 공통 푸터 */
.site-footer {
  padding-block: 60px;
  background: var(--site-footer-bg);
  color: #30333d;
}

.site-footer__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__info {
  width: 760px;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
}

.site-footer__links span {
  width: 1px;
  height: 11px;
  background: #bcbdc3;
}

.site-footer__copy {
  margin-top: 20px;
  color: #5d5f68;
  font-size: 12px;
  line-height: 1.45;
}

.site-footer__copy span {
  margin-left: 12px;
}

.site-footer__dragonfly {
  width: 98px;
  height: 26px;
  margin-top: 22px;
  object-fit: contain;
  object-position: left center;
}

.site-footer__ratings {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.site-footer__channel,
.site-footer__icon-shell {
  display: grid;
  width: 68px;
  height: 68px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
}

.site-footer__channel img,
.site-footer__icon-shell img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-footer__badge {
  width: 98px;
  height: 113px;
  object-fit: contain;
}

@media (max-width: 1199px) {
  :root {
    --site-content-width: 1080px;
  }

  .site-navigation {
    gap: 24px;
    font-size: 16px;
  }

  .site-navigation__cta {
    min-width: 130px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-page main .site-container,
  .game-info-page .game-info-main .site-container {
    width: min(calc(100% - 64px), var(--home-content-width));
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .feature-card {
    flex: none;
    min-height: 500px;
  }

  .showcase-card__operator {
    right: 16px;
    width: min(46%, 320px);
    height: 100%;
  }
}

/* 720px 태블릿에서도 메뉴가 가로로 밀리지 않도록 헤더를 먼저 접습니다. */
@media (max-width: 899px) {
  .site-header,
  .site-header__inner {
    min-height: 72px;
  }

  .site-menu-button {
    display: grid;
    place-items: center;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--site-header);
    font-size: 16px;
  }

  .site-navigation[hidden] {
    display: none;
  }

  .site-navigation > a:not(.site-navigation__cta) {
    padding: 14px 12px;
  }

  .site-navigation > a:not(.site-navigation__cta)::after {
    display: none;
  }

  .site-navigation__cta {
    margin-top: 8px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__info {
    width: 100%;
  }

  .site-footer__links {
    flex-wrap: wrap;
  }

  .site-footer__ratings {
    align-self: flex-end;
  }
}

@media (max-width: 719px) {
  .site-container,
  .site-width {
    width: min(calc(100% - 32px), var(--site-content-width));
  }

  .home-page main .site-container,
  .game-info-page .game-info-main .site-container {
    width: min(calc(100% - 32px), var(--home-content-width));
  }

  .site-header,
  .site-header__inner {
    min-height: 64px;
  }

  .site-brand,
  .game-site-brand {
    width: 166px;
    height: 38px;
  }

  .site-brand__icon,
  .game-site-brand__icon {
    width: 30px;
    height: 30px;
  }

  .site-brand__wordmark,
  .site-brand__text,
  .game-site-brand__wordmark {
    width: 132px;
    height: 34px;
  }

  .home-page .site-brand {
    width: 160px;
    height: 38px;
    gap: 4px;
  }

  .home-page .site-brand__icon {
    width: 30px;
    height: 30px;
  }

  .home-page .site-brand__wordmark {
    width: 126px;
    height: 31px;
  }

  .site-menu-button {
    display: grid;
    place-items: center;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 16px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--site-header);
    font-size: 16px;
  }

  .site-navigation[hidden] {
    display: none;
  }

  .site-navigation > a:not(.site-navigation__cta) {
    padding: 14px 12px;
  }

  .site-navigation > a:not(.site-navigation__cta)::after {
    display: none;
  }

  .site-navigation__cta {
    margin-top: 8px;
  }

  .page-hero {
    padding-block: 32px 40px;
  }

  .page-hero__frame {
    min-height: 300px;
    border-radius: 18px;
  }

  .home-section {
    padding-block: 64px;
  }

  .section-heading {
    margin-bottom: 28px;
    align-items: flex-start;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-heading p {
    font-size: 17px;
  }

  .section-heading__more {
    padding: 10px 12px;
    font-size: 14px;
  }

  .news-grid,
  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .news-card:hover,
  .news-card:focus-visible {
    transform: none;
  }

  .showcase-section {
    padding-block: 56px;
  }

  .showcase-card {
    min-height: 570px;
  }

  .showcase-card__copy {
    width: 100%;
    padding: 34px 24px;
  }

  .showcase-card__kicker {
    font-size: 16px;
  }

  .showcase-card h2 {
    margin-top: 24px;
    font-size: 38px;
  }

  /* 좁은 화면에서는 하단 버튼과 진행 표시 위쪽에 인물을 세웁니다. */
  .showcase-card__operator {
    right: 12px;
    bottom: 70px;
    width: min(54%, 260px);
    height: calc(100% - 210px);
  }

  .showcase-card__operator-group {
    right: -90px;
    width: 480px;
  }

  .showcase-card__weapon {
    right: -40px;
    bottom: 48px;
    width: 390px;
    height: 170px;
  }

  .showcase-card__controls {
    position: absolute;
    bottom: 24px;
    left: 24px;
  }

  .showcase-card__controls i {
    width: 100px;
  }

  .weapon-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(6, minmax(92px, 1fr));
  }

  .weapon-tabs button {
    padding: 17px 8px;
    font-size: 13px;
  }

  .feature-card {
    min-height: 430px;
  }

  .feature-card strong {
    font-size: 24px;
  }

  .site-footer {
    padding-block: 42px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__info {
    width: 100%;
  }

  .site-footer__links {
    flex-wrap: wrap;
  }

  .site-footer__copy span {
    display: block;
    margin-left: 0;
  }

  .site-footer__ratings {
    align-self: flex-end;
  }
}

/* 좁은 화면에서는 배경의 세로 정보를 보존하고 조작부 폭을 화면에 맞춥니다. */
@media (max-width: 899px) {
  .main-hero__stage {
    aspect-ratio: 16 / 9;
  }

  .main-hero__controls {
    width: calc(100% - 48px);
    padding-bottom: 20px;
    gap: 10px;
  }

  .main-hero__count {
    font-size: 15px;
  }

  .main-hero__progress {
    width: clamp(92px, 25vw, 180px);
  }
}

@media (max-width: 599px) {
  .main-hero__controls {
    width: calc(100% - 32px);
    padding-bottom: 14px;
    gap: 8px;
  }

  .main-hero__count {
    font-size: 13px;
  }

  .main-hero__progress {
    width: clamp(72px, 24vw, 110px);
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading__more {
    flex: 0 0 auto;
    padding: 10px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* 메인 페이지 모션 레이어
 * 기존 레이아웃은 유지하고, motion-enabled 상태에서만 입장·스크롤 효과를 더합니다.
 */
.home-page {
  overflow-x: clip;
}

.motion-word,
.motion-character {
  display: inline-block;
}

.motion-word {
  white-space: nowrap;
}

.motion-character {
  white-space: pre;
}

.main-hero,
.legend-transition,
.home-cta {
  --section-progress: 0;
}

.main-hero {
  --hero-scroll-progress: 0;
}

.main-hero__stage {
  --pointer-x: 0;
  --pointer-y: 0;
}

.main-hero__backdrop--echo {
  z-index: 0;
  opacity: 0;
}

.main-hero__backdrop img {
  transform:
    translate3d(
      calc(var(--pointer-x) * -7px),
      calc((var(--pointer-y) * -5px) + (var(--hero-scroll-progress) * 34px)),
      0
    )
    scale(calc(1.05 - (var(--hero-scroll-progress) * 0.03)));
  transform-origin: center;
  transition: opacity 520ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform, opacity;
}

.main-hero.is-slide-changing .main-hero__backdrop--echo {
  animation: hero-backdrop-crossfade 720ms ease both;
}

.main-hero.is-slide-changing .main-hero__backdrop:not(.main-hero__backdrop--echo) img {
  animation: hero-backdrop-pulse 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.main-hero.is-slide-changing [data-hero-current] {
  animation: number-swap 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-backdrop-crossfade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  45% {
    opacity: 0.46;
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes hero-backdrop-pulse {
  0% {
    opacity: 1;
    scale: 1;
  }

  42% {
    opacity: 0.68;
    scale: 1.025;
  }

  100% {
    opacity: 1;
    scale: 1;
  }
}

@keyframes number-swap {
  0% {
    opacity: 0;
    translate: 0 14px;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

/* NEWS 스크롤 진입과 카드 마이크로 인터랙션 */
.motion-enabled .news-section .section-heading h2,
.motion-enabled .news-section .section-heading p,
.motion-enabled .news-section .section-heading__more,
.motion-enabled .news-card {
  opacity: 0;
  translate: 0 28px;
}

.motion-enabled .news-card > img {
  clip-path: inset(0 100% 0 0);
  scale: 1.05;
}

.motion-enabled .news-section.is-in-view .section-heading h2,
.motion-enabled .news-section.is-in-view .section-heading p,
.motion-enabled .news-section.is-in-view .section-heading__more,
.motion-enabled .news-section.is-in-view .news-card {
  opacity: 1;
  translate: 0 0;
}

.motion-enabled .news-section.is-in-view .section-heading h2 {
  transition: opacity 560ms ease, translate 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-enabled .news-section.is-in-view .section-heading p {
  transition: opacity 560ms ease 100ms, translate 720ms cubic-bezier(0.16, 1, 0.3, 1) 100ms;
}

.motion-enabled .news-section.is-in-view .section-heading__more {
  transition: opacity 560ms ease 160ms, translate 720ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.news-card:nth-child(1) {
  --news-order: 0;
}

.news-card:nth-child(2) {
  --news-order: 1;
}

.news-card:nth-child(3) {
  --news-order: 2;
}

.news-card:nth-child(4) {
  --news-order: 3;
}

.motion-enabled .news-section.is-in-view .news-card {
  transition:
    opacity 520ms ease calc(180ms + (var(--news-order) * 100ms)),
    translate 720ms cubic-bezier(0.16, 1, 0.3, 1) calc(180ms + (var(--news-order) * 100ms)),
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.motion-enabled .news-section.is-in-view .news-card > img {
  clip-path: inset(0);
  scale: 1;
  transition:
    clip-path 850ms cubic-bezier(0.16, 1, 0.3, 1) calc(220ms + (var(--news-order) * 100ms)),
    scale 700ms ease calc(220ms + (var(--news-order) * 100ms));
}

.news-card__body > strong {
  position: relative;
  display: block;
  width: fit-content;
  padding-bottom: 6px;
}

.news-card__body > strong::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--site-yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-8px);
}

.news-card:hover > img,
.news-card:focus-visible > img {
  scale: 1.05;
}

.news-card:hover .news-card__body > strong::after,
.news-card:focus-visible .news-card__body > strong::after {
  transform: scaleX(1);
}

.news-card__meta b {
  transition: transform 220ms ease;
}

.news-card:hover .news-card__meta b,
.news-card:focus-visible .news-card__meta b {
  transform: translateX(6px);
}

.motion-enabled .news-card__body > span:not(.news-card__meta),
.motion-enabled .news-card__meta {
  opacity: 0;
  translate: 0 8px;
  transition: opacity 420ms ease, translate 520ms ease;
}

.motion-enabled .news-section.is-in-view .news-card__body > span:not(.news-card__meta),
.motion-enabled .news-section.is-in-view .news-card__meta {
  opacity: 1;
  translate: 0 0;
  transition-delay: calc(430ms + (var(--news-order) * 100ms));
}

/* NEWS와 쇼케이스 사이의 전장 전환 */
.legend-transition {
  position: relative;
  display: grid;
  /* 배경형 섹션은 같은 세로 기준을 공유해 스크롤 리듬을 일정하게 만듭니다. */
  min-height: var(--home-band-height);
  overflow: hidden;
  place-items: center;
  background: #080a0f;
  color: #ffffff;
  isolation: isolate;
}

.legend-transition__background,
.legend-transition__overlay {
  position: absolute;
  inset: 0;
}

.legend-transition__background {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.12);
  transform: scale(calc(1.04 + (var(--section-progress) * 0.09)));
  transform-origin: center;
  will-change: transform;
}

.legend-transition__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.42), rgba(5, 6, 9, 0.78)),
    linear-gradient(90deg, rgba(5, 6, 9, 0.55), transparent 55%, rgba(5, 6, 9, 0.38));
}

.legend-transition__content {
  text-align: center;
}

.legend-transition h2 {
  font-size: clamp(54px, 6vw, 112px);
  line-height: 0.92;
  letter-spacing: calc(0.01em + (var(--section-progress) * 0.06em));
  white-space: nowrap;
  text-transform: uppercase;
}

.legend-transition p {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 700;
}

.motion-enabled .legend-transition h2 .motion-character,
.motion-enabled .legend-transition p {
  opacity: 0;
  translate: 0 34px;
}

.motion-enabled .legend-transition.is-in-view h2 .motion-character,
.motion-enabled .legend-transition.is-in-view p {
  opacity: 1;
  translate: 0 0;
}

.motion-enabled .legend-transition.is-in-view h2 .motion-character {
  transition:
    opacity 560ms ease calc(var(--character-index) * 34ms),
    translate 820ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--character-index) * 34ms);
}

.motion-enabled .legend-transition.is-in-view p {
  transition: opacity 620ms ease 560ms, translate 820ms cubic-bezier(0.16, 1, 0.3, 1) 560ms;
}

/* 오퍼레이터·무기 쇼케이스 */
.showcase-section {
  position: relative;
  z-index: 2;
  margin-top: -8vh;
  padding-block: calc(100px + 8vh) 96px;
  background: #ffffff;
}

.showcase-card {
  --pointer-x: 0;
  --pointer-y: 0;
}

.motion-enabled .showcase-grid .showcase-card {
  opacity: 0;
  translate: 0 36px;
}

.motion-enabled .showcase-section.is-in-view .showcase-card {
  opacity: 1;
  translate: 0 0;
  transition:
    opacity 620ms ease,
    translate 850ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms ease;
}

.motion-enabled .showcase-section.is-in-view .showcase-card:nth-child(2) {
  transition-delay: 100ms;
}

/*
 * 오퍼레이터 카드 배경은 전술장비 화면과 같은 연막 위 SF 마크 조합을 사용합니다.
 * 카드가 밝은 톤이라 연막은 옅게 깔고 마크만 골드로 남깁니다.
 */
.showcase-card__backdrop {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.showcase-card__smoke {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.2;
  mask-image: linear-gradient(90deg, transparent, #000 46%);
  transform: translate3d(calc(var(--pointer-x) * -6px), calc(var(--pointer-y) * -4px), 0);
}

.showcase-card__mark {
  position: absolute;
  right: 2%;
  bottom: 6%;
  width: clamp(150px, 22%, 260px);
  height: auto;
  opacity: 0.3;
  transform: translate3d(calc(var(--pointer-x) * -9px), calc(var(--pointer-y) * -5px), 0);
}

/* 인물 컷아웃은 잘라내는 대신 우측에서 밀려 들어오도록 등장시킵니다. */
.motion-enabled .showcase-card__operator {
  opacity: 0;
  translate: 42px 0;
}

.motion-enabled .showcase-section.is-in-view .showcase-card__operator {
  opacity: 1;
  translate: 0 0;
  transition:
    translate 900ms cubic-bezier(0.16, 1, 0.3, 1) 180ms,
    opacity 520ms ease 180ms;
}

/* 인물 컷아웃은 확대하거나 아래로 밀면 발끝이 카드 밖으로 잘리므로 가로로만 움직입니다. */
.showcase-card__operator {
  transform: translate3d(calc(var(--pointer-x) * 10px), 0, 0);
}

.showcase-card__weapon {
  transform:
    perspective(900px)
    translate3d(calc(var(--pointer-x) * 10px), calc(var(--pointer-y) * 7px), 0)
    rotateX(calc(var(--pointer-y) * -2deg))
    rotateY(calc(var(--pointer-x) * 3deg));
  animation: weapon-float 5.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform, translate;
}

.showcase-card.is-showcase-changing .showcase-card__operator,
.showcase-card.is-showcase-changing .showcase-card__weapon {
  animation: showcase-image-swap 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card.is-showcase-changing .showcase-card__copy h2,
.showcase-card.is-showcase-changing .showcase-card__copy > p:not(.showcase-card__kicker),
.showcase-card.is-showcase-changing .showcase-card__controls b {
  animation: showcase-copy-swap 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.weapon-tabs::after {
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  width: calc(100% / 6);
  height: 3px;
  background: var(--site-yellow);
  content: "";
  pointer-events: none;
  transform: translateX(calc(var(--weapon-index, 0) * 100%));
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.weapon-tabs button[aria-selected="true"] {
  border-color: transparent;
}

@keyframes weapon-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes showcase-image-swap {
  0% {
    opacity: 0;
    translate: 28px 0;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes showcase-copy-swap {
  0% {
    opacity: 0;
    translate: 0 13px;
  }

  100% {
    opacity: 1;
    translate: 0 0;
  }
}

.section-heading--features {
  align-items: flex-end;
  justify-content: flex-start;
}

/* 푸터 직전 CTA */
.home-cta {
  position: relative;
  display: grid;
  min-height: var(--home-band-height);
  overflow: hidden;
  place-items: center;
  background: #07090d;
  color: #ffffff;
  isolation: isolate;
}

.home-cta__background,
.home-cta__overlay {
  position: absolute;
  inset: 0;
}

.home-cta__background {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) brightness(0.74);
  transform: scale(calc(1.04 + (var(--section-progress) * 0.08)));
  will-change: transform;
}

.home-cta__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 0 18%, rgba(0, 0, 0, 0.42) 70%),
    linear-gradient(180deg, rgba(6, 7, 10, 0.38), rgba(6, 7, 10, 0.8));
}

.home-cta__content {
  text-align: center;
}

.home-cta h2 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(52px, 6vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.home-cta p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(20px, 2vw, 32px);
}

.home-cta__button {
  position: relative;
  display: inline-flex;
  min-width: 230px;
  margin-top: 44px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 20px 28px;
  border: 1px solid var(--site-yellow);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  isolation: isolate;
}

.home-cta__button::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--site-yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-cta__button,
.home-cta__button b {
  transition: color 240ms ease, transform 240ms ease;
}

.home-cta__button:hover,
.home-cta__button:focus-visible {
  color: #0b0d11;
}

.home-cta__button:hover::before,
.home-cta__button:focus-visible::before {
  transform: scaleX(1);
}

.home-cta__button:hover b,
.home-cta__button:focus-visible b {
  transform: translateX(8px);
}

.motion-enabled .home-cta h2 .motion-character,
.motion-enabled .home-cta p,
.motion-enabled .home-cta__button,
.motion-enabled .site-footer {
  opacity: 0;
  translate: 0 30px;
}

.motion-enabled .home-cta.is-in-view h2 .motion-character,
.motion-enabled .home-cta.is-in-view p,
.motion-enabled .home-cta.is-in-view .home-cta__button,
.motion-enabled .site-footer.is-in-view {
  opacity: 1;
  translate: 0 0;
}

.motion-enabled .home-cta.is-in-view h2 .motion-character {
  transition:
    opacity 520ms ease calc(var(--character-index) * 34ms),
    translate 760ms cubic-bezier(0.16, 1, 0.3, 1) calc(var(--character-index) * 34ms);
}

.motion-enabled .home-cta.is-in-view p {
  transition: opacity 620ms ease 520ms, translate 760ms cubic-bezier(0.16, 1, 0.3, 1) 520ms;
}

.motion-enabled .home-cta.is-in-view .home-cta__button {
  transition:
    opacity 620ms ease 660ms,
    translate 760ms cubic-bezier(0.16, 1, 0.3, 1) 660ms,
    color 240ms ease;
}

.motion-enabled .site-footer.is-in-view {
  transition: opacity 620ms ease, translate 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* 태블릿·모바일은 sticky와 복잡한 패럴랙스를 제거합니다. */
@media (max-width: 1199px) {
  .main-hero {
    --hero-scroll-progress: 0 !important;
  }

  .showcase-section {
    margin-top: -44px;
    padding-block: 92px 72px;
  }

  .showcase-card__operator,
  .showcase-card__weapon,
  .showcase-card__smoke,
  .showcase-card__mark {
    --pointer-x: 0;
    --pointer-y: 0;
  }

  .features-section {
    min-height: 0;
    padding-block: 80px;
  }

  .features-section > .site-container {
    position: static;
    min-height: 0;
    padding-block: 0;
  }

  .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }

  .feature-card {
    min-height: 440px;
    flex: none;
  }

  .feature-card .feature-card__video {
    top: 76px;
    right: 28px;
    bottom: 114px;
    left: 28px;
    width: auto;
    height: auto;
  }

  .feature-card:not(.is-expanded) .feature-card__video {
    opacity: 0;
    pointer-events: none;
  }

  .feature-card.is-expanded .feature-card__video {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .feature-card .feature-card__description {
    right: 28px;
    bottom: 30px;
    left: 28px;
    opacity: 1;
    transform: none;
    white-space: normal;
  }

  .feature-card strong {
    top: auto;
    right: 28px;
    bottom: 92px;
    left: 28px;
    font-size: 26px;
  }

  .feature-card.is-expanded strong {
    top: 28px;
    right: 28px;
    bottom: auto;
    left: 28px;
  }

  .motion-enabled .feature-card {
    opacity: 0;
    translate: 0 28px;
  }

  .motion-enabled .feature-card.is-in-view {
    opacity: 1;
    translate: 0 0;
    transition: opacity 560ms ease, translate 760ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .motion-enabled .feature-card > img {
    scale: 1.04;
    transition: scale 1100ms ease;
  }

  .motion-enabled .feature-card.is-in-view > img {
    scale: 1;
  }

}

@media (max-width: 719px) {
  /* 좁은 화면은 세로 여유가 적어 배경형 섹션 기준을 함께 낮춥니다. */
  :root {
    --home-band-height: 62vh;
  }

  .legend-transition h2 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 52px);
    line-height: 1.02;
    letter-spacing: 0.025em;
    white-space: normal;
  }

  .legend-transition p {
    max-width: 290px;
    margin-top: 20px;
    margin-inline: auto;
    font-size: 18px;
  }

  .showcase-section {
    margin-top: -28px;
    padding-block: 64px 56px;
  }

  /* 좁은 화면에서는 문구 영역이 전체 폭을 쓰므로 배경 장식을 감춥니다. */
  .showcase-card__backdrop {
    display: none;
  }

  .showcase-card--operator .showcase-card__copy,
  .showcase-card--weapon .showcase-card__copy {
    width: 100%;
  }

  .showcase-card--weapon .showcase-card__kicker {
    white-space: normal;
  }

  /* 좁은 화면에서는 이미지가 이미 작아 등장 이동을 생략합니다. */
  .motion-enabled .showcase-card__operator,
  .motion-enabled .showcase-section.is-in-view .showcase-card__operator {
    opacity: 1;
    translate: 0 0;
  }

  .showcase-card__weapon {
    right: -6px;
    width: 340px;
    animation: none;
  }

  .news-card__body > span:not(.news-card__meta),
  .news-card__meta {
    opacity: 1;
    translate: 0 0;
  }

  .features-section {
    padding-block: 64px;
  }

  .feature-card {
    min-height: 430px;
  }

  .home-cta {
    padding-block: 0;
  }

  .home-cta h2 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .home-cta p {
    font-size: 18px;
    line-height: 1.5;
  }

  .home-cta__button {
    min-width: 210px;
    margin-top: 34px;
    padding: 17px 24px;
  }
}

@media (hover: none) {
  .news-card:hover,
  .news-card:focus-visible {
    transform: none;
  }

  .news-card:hover > img,
  .news-card:focus-visible > img {
    scale: 1;
  }
}

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

  .motion-enabled .news-section .section-heading h2,
  .motion-enabled .news-section .section-heading p,
  .motion-enabled .news-section .section-heading__more,
  .motion-enabled .news-card,
  .motion-enabled .news-card__body > span,
  .motion-enabled .legend-transition h2 .motion-character,
  .motion-enabled .legend-transition p,
  .motion-enabled .showcase-grid .showcase-card,
  .motion-enabled .feature-card,
  .motion-enabled .home-cta h2 .motion-character,
  .motion-enabled .home-cta p,
  .motion-enabled .home-cta__button,
  .motion-enabled .site-footer {
    opacity: 1 !important;
    transform: none !important;
    translate: 0 0 !important;
  }

  .motion-enabled .news-card > img {
    clip-path: none !important;
  }

  .motion-enabled .showcase-card__operator {
    opacity: 1 !important;
    translate: 0 0 !important;
  }

  .features-section {
    min-height: 0;
    padding-block: 80px;
  }

  .features-section > .site-container {
    position: static;
    min-height: 0;
    padding-block: 0;
  }
}
