:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.84);
  --line: rgba(255, 255, 255, 0.28);
  --accent: #ffe27a;
  --shadow: rgba(13, 15, 28, 0.42);
  --hero-image: url("https://i.imgur.com/Gfzrx1r.jpeg");
  --visual-size: clamp(280px, 34vw, 420px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  background: #10121d;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  place-items: center;
  padding: clamp(28px, 6vw, 76px);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(9, 11, 22, 0.82) 0%,
      rgba(9, 11, 22, 0.48) 48%,
      rgba(9, 11, 22, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(9, 11, 22, 0.18) 0%,
      rgba(9, 11, 22, 0.72) 100%
    ),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.95);
  opacity: 0.82;
  transform: scale(1.08);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 226, 122, 0.22), transparent 28%),
    linear-gradient(180deg, transparent 0%, rgba(9, 11, 22, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--visual-size) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(100%, 1120px);
}

/* 핵심: 카드의 가로/세로를 같은 값으로 직접 고정합니다.
   기존처럼 이미지가 세로 카드 안에서 object-fit: cover 되면 두 번째 예시처럼 길게 잘려 보입니다. */
.visual-wrap {
  width: var(--visual-size);
  height: var(--visual-size);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(8, 10, 18, 0.36);
}

.main-visual {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 6.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 18px 40px var(--shadow);
  word-break: keep-all;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  line-height: 1.75;
  word-break: keep-all;
  text-shadow: 0 10px 28px var(--shadow);
}

.status-panel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin-top: 34px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(8, 10, 18, 0.18);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 226, 122, 0.18);
}

.visual-failed .visual-wrap {
  display: none;
}

@media (max-width: 760px) {
  :root {
    --visual-size: min(calc(100vw - 48px), 380px);
  }

  .coming-soon {
    padding: 24px;
  }

  .hero-backdrop {
    background-position: center top;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
  }

  .visual-wrap {
    justify-self: center;
  }

  h1,
  .hero-copy {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --visual-size: calc(100vw - 36px);
  }

  .coming-soon {
    padding: 18px;
  }

  .hero-copy {
    margin-top: 18px;
  }

  .status-panel {
    width: 100%;
    justify-content: center;
  }
}
