/*
  Caladrius 2 / Dark Element
  Official teaser site
*/

:root {
  --color-bg: #070912;
  --color-bg-soft: #111827;
  --color-panel: rgba(255, 255, 255, 0.075);
  --color-panel-strong: rgba(255, 255, 255, 0.12);
  --color-text: #f7f7fb;
  --color-muted: #b9bed1;
  --color-line: rgba(255, 255, 255, 0.18);
  --color-accent: #f1c86a;
  --color-accent-2: #e84668;

  --shadow-panel: 0 20px 70px rgba(0, 0, 0, 0.34);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.42);

  --container: min(1120px, calc(100% - 48px));
  --radius: 22px;
  --header-h: 72px;

  --font-sans:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans KR",
    "Noto Sans SC",
    "Noto Sans TC",
    "Hiragino Sans",
    "Yu Gothic",
    Meiryo,
    sans-serif;

--font-display:
  "Cinzel",
  "Times New Roman",
  Georgia,
  serif;
}


/* ========================================
   Reset
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text);
  font-family: var(--font-sans);
  line-height: 1.7;
  background-color: var(--color-bg);
  background-image:
    linear-gradient(
      180deg,
      rgba(7, 9, 18, 0.35) 0%,
      rgba(7, 9, 18, 0.72) 100%
    ),
    url("../img/bg-main-pc.webp");
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
  overflow-x: hidden;
}

body.is-language-changing main {
  opacity: 0.25;
}

main {
  transition: opacity 0.18s ease;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========================================
   Accessibility
======================================== */

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 10000;
  padding: 10px 14px;
  color: #111827;
  background: #fff;
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

/* ========================================
   Header
======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(7, 9, 18, 0.82);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--container);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.logo-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-logo-title {
  min-width: 0;
  display: block;
  line-height: 1;
}

.site-logo-title img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  cursor: pointer;
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.nav-list a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  color: var(--color-muted);
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--color-text);
}

.language-item {
  display: flex;
  align-items: center;
}

.language-select {
  min-height: 40px;
  padding: 0 38px 0 14px;
  color: var(--color-text);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  cursor: pointer;
}

.language-select:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.language-select option {
  color: #111827;
  background: #fff;
}

/* ========================================
   Hero
======================================== */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #090d19;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  animation: hero-scale 12s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 75% 44%,
      rgba(146, 32, 94, 0.12),
      transparent 38%
    ),
    radial-gradient(
      circle at 20% 65%,
      rgba(170, 31, 36, 0.15),
      transparent 34%
    );
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 9, 18, 0.03) 0%,
      rgba(7, 9, 18, 0.25) 48%,
      rgba(7, 9, 18, 0.88) 88%,
      #070912 100%
    );
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0 78px;
  text-align: center;
}

.hero-kicker,
.hero-title,
.hero-copy {
  margin: 0;
  line-height: 1;
}

.hero-kicker-image,
.hero-title-image,
.hero-copy-image {
  display: block;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.hero-kicker-image {
  width: min(260px, 42vw);
  margin-bottom: 6px;
}

.hero-title-image {
  width: min(560px, 86vw);
}

.hero-copy-image {
  width: min(380px, 58vw);
  margin-bottom: 14px;
}

.release-window {
  margin: 14px 0 0;
  color: var(--color-accent);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.75);
}

.hero-platforms {
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.hero-platforms li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-platforms img {
  width: auto;
  height: 34px;
  object-fit: contain;
}

.hero-company-logo{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:28px;
    margin-top:32px;
    flex-wrap:wrap;
}

.hero-company-logo a{
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-company-logo img{
    display:block;
    height:44px;
    width:auto;
    transition:.25s ease;
}

.hero-company-logo a:hover img{
    transform:translateY(-2px);
    opacity:.9;
}

.hero-company-logo img{
    height:42px;
    width:auto;
}

.hero-company-logo img{
    height:42px;
    width:auto;
}

.hero-company-logo a:last-child img{
	width: auto;
	height: 54px;
}

/* ========================================
   Sections
======================================== */

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 88px 0;
}

.section-head {
  margin-bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);

  font-size: clamp(34px, 5vw, 60px);
  font-weight: 500;

  line-height: 1;
  letter-spacing: 0.04em;

  color: #f8f4ef;

  text-shadow:
    1px 1px 0 #4a1d1d,
    0 4px 8px rgba(40,0,0,.45);
}

.section-title-image {
  line-height: 1;
}

.section-title-image img {
  width: min(420px, 86vw);
  height: auto;
}

.section-lead {
  max-width: 640px;
  margin: 0;
  color: var(--color-muted);
}

/* ========================================
   Movie
======================================== */

.movie-frame {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.movie-lazy {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--color-muted);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.02)
    ),
    #000;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  box-shadow: var(--shadow-dark);
}

.movie-lazy-button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #000;
  border: 0;
  cursor: pointer;
}

.movie-lazy-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 45%,
      rgba(0, 0, 0, 0.36) 100%
    );
  pointer-events: none;
}

.movie-lazy-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.movie-lazy-button:hover img,
.movie-lazy-button:focus-visible img {
  opacity: 0.88;
  transform: scale(1.025);
}

.movie-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 76px;
  height: 76px;
  margin: auto;
  display: grid;
  place-items: center;
  padding-left: 5px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.64);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.movie-lazy-button:hover .movie-play,
.movie-lazy-button:focus-visible .movie-play {
  background: rgba(183, 22, 45, 0.88);
  border-color: #fff;
  transform: scale(1.08);
}

.movie-lazy iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.media-placeholder {
  margin: 0;
  padding: 24px;
  color: var(--color-muted);
  text-align: center;
}

/* ========================================
   Infinite screenshot marquee
======================================== */

.screenshot-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 12px 0 24px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.screenshot-marquee.is-dragging {
  cursor: grabbing;
}

.screenshot-track {
  display: flex;
  width: max-content;
  gap: 20px;
  will-change: transform;
}

.screenshot-item {
  flex: 0 0 auto;
  width: clamp(340px, 32vw, 560px);
}

.screenshot-item img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.screenshot-item:hover img,
.screenshot-item:focus-visible img {
  opacity: 0.88;
  transform: scale(1.035);
}

.screenshot-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.screenshot-item:hover::after,
.screenshot-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 920px) {
  .screenshot-track {
    gap: 16px;
    animation-duration: 32s;
  }

  .screenshot-item {
    width: clamp(300px, 68vw, 470px);
  }

  .screenshot-marquee::before,
  .screenshot-marquee::after {
    width: 60px;
  }
}

@media (max-width: 560px) {
  .screenshot-track {
    gap: 12px;
    animation-duration: 28s;
  }

  .screenshot-item {
    width: 82vw;
    border-radius: 12px;
  }

  .screenshot-marquee::before,
  .screenshot-marquee::after {
    width: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screenshot-track {
    animation: none;
    overflow-x: auto;
  }
}



.screenshot-grid > .media-placeholder {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  background: var(--color-panel);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.screenshot-item {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: #000;
  border: 1px solid var(--color-line);
  border-radius: 16px;
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.screenshot-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.screenshot-item:hover::after,
.screenshot-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.screenshot-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition:
    transform 0.38s ease,
    opacity 0.38s ease;
}

.screenshot-item:hover img,
.screenshot-item:focus-visible img {
  opacity: 0.88;
  transform: scale(1.035);
}

/* ========================================
   News
======================================== */

.news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.news-list li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--color-line);
}

.news-date {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ========================================
   Social
======================================== */

.footer-social {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.footer-social-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.footer-social-links a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
}

.footer-social-links img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* ========================================
   Platform legal
======================================== */

.footer-platform-legal {
  max-width: 920px;
  margin: 28px auto 0;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.footer-platform-legal p {
  margin: 0;
}

.footer-platform-legal p + p {
  margin-top: 4px;
}

/* ========================================
   Footer
======================================== */

.site-footer {
  margin-top: 32px;
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid var(--color-line);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

/* ========================================
   Back to top
======================================== */

.back-to-top {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 1200;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 8px 0;
  color: #111827;
  background: var(--color-accent);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}

.back-to-top span:first-child {
  font-size: 20px;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #111827;
  background: #ffd980;
  transform: translateY(-3px);
}

/* ========================================
   Lightbox
======================================== */

.lightbox {
  width: min(1400px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  color: #fff;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100dvh - 64px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  background: rgba(15, 15, 20, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  cursor: pointer;
}

/* ========================================
   Animations
======================================== */

@keyframes hero-scale {
  from {
    transform: scale(1.035);
  }

  to {
    transform: scale(1);
  }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 920px) {
  :root {
    --container: min(calc(100% - 32px), 760px);
    --header-h: 64px;
  }

  body {
    background-attachment: scroll, scroll;
  }

  .site-logo-title img {
    height: 52px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    background: rgba(7, 9, 18, 0.97);
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    width: var(--container);
    margin: 0 auto;
    padding: 16px 0 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-list a {
    min-height: 46px;
    padding: 0 14px;
    justify-content: center;
    color: var(--color-text);
    background: var(--color-panel);
    border: 1px solid var(--color-line);
    border-radius: 12px;
  }

  .language-item {
    grid-column: 1 / -1;
  }

  .language-select {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
  }

  .hero {
    min-height: calc(94svh - var(--header-h));
  }

  .hero-content {
    padding: 88px 0 56px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    display: block;
  }

  .section-lead {
    margin-top: 14px;
  }

  .footer-platform-legal {
    max-width: calc(100% - 32px);
    font-size: 9px;
    line-height: 1.65;
  }

  .back-to-top {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
    font-size: 11px;
  }

  .back-to-top span:first-child {
    font-size: 18px;
  }
}

/* ========================================
   Mobile
======================================== */

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  body {
    line-height: 1.65;
  }

  .site-logo-title img {
    height: 44px;
  }

  .logo-mark,
  .logo-mark img {
    width: 32px;
    height: 32px;
  }

  .nav-list {
    grid-template-columns: 1fr;
  }

  .language-item {
    grid-column: auto;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-content {
    padding: 86px 0 44px;
  }

  .hero-kicker {
    min-height: 64px;
  }

  .hero-kicker-image {
    position: absolute;
    top: clamp(8px, 2svh, 40px);
    right: 0;
    left: 0;
    z-index: 2;
    width: min(220px, 60vw);
    margin: 0 auto;
  }

  .hero-title-image {
    width: min(420px, 88vw);
  }

  .hero-copy-image {
    width: min(320px, 76vw);
    margin-bottom: 12px;
  }

  .release-window {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero-platforms {
    gap: 10px;
  }

  .hero-platforms img {
    height: 27px;
  }

  .hero-company-logo {
    margin-top: 14px;
  }

/*
  .hero-company-logo img {
    width: min(80px, 25vw);
  }
*/

  .section-title {
    font-size: 38px;

  }

  .section-title-image img {
    width: min(340px, 78vw);
  }

  .movie-lazy {
    border-radius: 12px;
  }

  .movie-play {
    width: 58px;
    height: 58px;
    font-size: 26px;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .screenshot-item {
    border-radius: 12px;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }

  .footer-platform-legal {
    margin-top: 20px;
    padding: 10px 12px;
    text-align: left;
  }

  .footer-inner {
    padding: 26px 0;
    font-size: 11px;
  }

  .lightbox {
    width: calc(100% - 20px);
  }

  .lightbox-close {
    top: -14px;
    right: -4px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}

/* ========================================
   Large monitors
======================================== */

@media (min-width: 1921px) {
  :root {
    --container: min(1320px, calc(100% - 96px));
  }

  body {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 9, 18, 0.35) 0%,
        rgba(7, 9, 18, 0.72) 100%
      ),
      url("../img/bg-main-pc-large.webp");
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 110px;
  }

  .hero-title-image {
    width: min(680px, 34vw);
  }

  .hero-copy-image {
    width: min(460px, 24vw);
  }

  .hero-kicker-image {
    width: min(310px, 18vw);
  }

  .section {
    padding: 108px 0;
  }
}

@media (min-width: 3000px) {
  :root {
    --container: min(1560px, calc(100% - 160px));
  }

  .hero-title-image {
    width: min(760px, 26vw);
  }

  .hero-copy-image {
    width: min(520px, 18vw);
  }

  .hero-platforms img {
    height: 42px;
  }

  .section-title {
    font-size: clamp(54px, 3vw, 78px);
  }
}

/* ========================================
   Mobile background
======================================== */

@media (max-width: 767px) {
  body {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 9, 18, 0.35) 0%,
        rgba(7, 9, 18, 0.72) 100%
      ),
      url("../img/bg-main-sp.webp");
  }
}

/* ========================================
   Reduced motion
======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}