@charset "utf-8";

:root {
  color-scheme: dark;
  --text: #fffafe;
  --muted: rgb(255 250 254 / 74%);
  --muted-strong: rgb(255 250 254 / 86%);
  --line: rgb(255 250 254 / 28%);
  --line-strong: rgb(255 250 254 / 42%);
  --accent: #ff40ad;
  --frame-x: clamp(30px, 4.2vw, 82px);
  --frame-y: clamp(24px, 3.7vh, 46px);
  --body-font:
    "Pretendard Variable", Pretendard, "Noto Sans KR", "Apple SD Gothic Neo",
    Arial, sans-serif;
  --display-font: "Arial Black", Impact, "Pretendard Variable", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

html {
  background: #0d0911;
}

body {
  overflow: hidden;
  background: #0d0911;
  color: var(--text);
  font-family: var(--body-font);
  opacity: 0;
  animation: body-fallback 0s linear 1.6s forwards;
  transition: opacity 0.35s ease;
}

body.ready {
  opacity: 1;
  animation: none;
}

@keyframes body-fallback {
  to {
    opacity: 1;
  }
}

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

button {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
p,
dl,
dd,
figure {
  margin: 0;
}

#fx {
  position: fixed;
  z-index: 20;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.fxfb {
  position: absolute;
  left: var(--x, 50%);
  bottom: -20px;
  color: var(--accent);
  font-size: 8px;
  opacity: 0;
  animation: fxfb-rise var(--duration, 18s) var(--delay, 0s) linear infinite;
}

@keyframes fxfb-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0);
  }

  22%,
  62% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
    transform: translate3d(1.2vw, -104vh, 0) rotate(70deg);
  }
}

.showcase,
.concept {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}

.scene {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #120d14;
}

.scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 42%;
}

/* dark = neon city (default), light = original cover selfie */
.scene .scene-light {
  display: none;
}
body.light .scene .scene-dark {
  display: none;
}
body.light .scene .scene-light {
  display: block;
}

.scene::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgb(7 5 10 / 55%) 0,
      rgb(7 5 10 / 34%) 24%,
      rgb(7 5 10 / 8%) 52%,
      rgb(7 5 10 / 70%) 100%
    ),
    linear-gradient(
      0deg,
      rgb(7 5 10 / 94%) 0,
      rgb(7 5 10 / 54%) 20%,
      rgb(7 5 10 / 10%) 47%,
      rgb(7 5 10 / 16%) 100%
    );
  content: "";
  pointer-events: none;
}

.composition {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  color: var(--text);
  text-shadow: 0 1px 15px rgb(0 0 0 / 32%);
}

.composition::before {
  position: absolute;
  z-index: 2;
  inset: var(--frame-y) var(--frame-x);
  border: 1px solid var(--line);
  content: "";
  pointer-events: none;
}

.title-block,
.about-line,
.profile-line,
.schedule-flow,
.connect-line {
  position: absolute;
  z-index: 3;
}

/* Main title: decorative line and brand mark are part of this block now,
   so they never collide with the title. */
.title-block {
  right: calc(var(--frame-x) + 18px);
  bottom: clamp(150px, 21.5vh, 250px);
  width: min(48vw, 900px);
  border-top: 1px solid var(--accent);
  padding-top: clamp(12px, 1.5vh, 19px);
  text-align: right;
}

.title-kicker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 0.9vw, 16px);
  margin-bottom: clamp(10px, 1.2vh, 15px);
  color: var(--accent);
  font-size: clamp(10px, 0.72vw, 14px);
  font-weight: 950;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.title-kicker::before {
  width: clamp(42px, 4vw, 76px);
  height: 2px;
  background: currentColor;
  content: "";
}

.title-block h1 {
  display: grid;
  width: max-content;
  max-width: 100%;
  justify-items: end;
  margin-left: auto;
  line-height: 0.75;
}

.title-block h1 strong {
  font-family: var(--display-font);
  font-size: clamp(104px, 13.6vw, 286px);
  font-weight: 950;
  letter-spacing: -0.085em;
  white-space: nowrap;
}

.title-block h1 small {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: clamp(12px, 0.9vw, 18px);
  margin-top: clamp(10px, 1.4vh, 16px);
  color: var(--accent);
  font-size: clamp(16px, 1.32vw, 26px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.23em;
  white-space: nowrap;
}

.title-block h1 small::after {
  width: clamp(12px, 1vw, 20px);
  height: clamp(12px, 1vw, 20px);
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translateY(-18%) rotate(45deg);
}

.title-block > p {
  margin-top: clamp(13px, 1.6vh, 20px);
  color: var(--muted-strong);
  font-size: clamp(13px, 0.95vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

/* Left profile: enlarged and kept in its own vertical zone. */
.profile-line {
  top: clamp(78px, 12vh, 130px);
  left: calc(var(--frame-x) + 18px);
  display: flex;
  width: min(17vw, 260px);
  flex-direction: column;
  gap: clamp(15px, 2vh, 25px);
  border-left: 1px solid var(--line-strong);
  padding-left: clamp(16px, 1.2vw, 24px);
}

.profile-line div {
  display: grid;
  gap: 5px;
}

.profile-line dt {
  color: var(--muted-strong);
  font-size: clamp(10px, 0.68vw, 13px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.15em;
}

.profile-line dd {
  font-size: clamp(15px, 1vw, 21px);
  font-weight: 850;
  line-height: 1.2;
}

/* About copy is intentionally separated from the profile stack. */
.about-line {
  top: clamp(300px, 40.5%, 440px);
  left: calc(var(--frame-x) + clamp(52px, 4.4vw, 84px));
  display: grid;
  width: min(34vw, 580px);
  gap: clamp(8px, 1vh, 12px);
  text-align: left;
}

.about-line > span,
.about-line em {
  color: var(--accent);
  font-size: clamp(11px, 0.78vw, 15px);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.about-line em {
  max-width: 560px;
  color: var(--muted-strong);
  font-size: clamp(12px, 0.88vw, 17px);
  font-weight: 650;
  line-height: 1.7;
  letter-spacing: 0;
}

/* Live/links block is aligned to the left and sits above the schedule. */
.connect-line {
  bottom: clamp(150px, 21.5vh, 250px);
  left: calc(var(--frame-x) + clamp(52px, 4.4vw, 84px));
  display: flex;
  width: min(34vw, 620px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 34px);
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(11px, 1.4vh, 16px);
}

.next-live {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 9px auto;
  gap: 3px 9px;
}

.next-live i {
  grid-row: 1 / 3;
  align-self: center;
  width: 6px;
  height: 6px;
  background: var(--accent);
}

.next-live span {
  color: var(--accent);
  font-size: clamp(9px, 0.62vw, 12px);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: 0.16em;
}

.next-live strong {
  font-size: clamp(14px, 0.98vw, 20px);
  line-height: 1.2;
}

.external-links {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: end;
  gap: 9px clamp(12px, 1.2vw, 22px);
}

.external-links a {
  font-size: clamp(9px, 0.65vw, 12px);
  font-weight: 900;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.external-links a span {
  margin-left: 4px;
  color: var(--accent);
}

/* Schedule stays in a dedicated bottom strip. */
.schedule-flow {
  right: var(--frame-x);
  bottom: calc(var(--frame-y) + 4px);
  left: var(--frame-x);
  display: grid;
  min-width: 0;
}

.schedule-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: clamp(8px, 1vh, 12px);
}

.schedule-heading > div:first-child {
  display: grid;
  gap: 3px;
}

.schedule-heading small {
  color: var(--accent);
  font-size: clamp(9px, 0.62vw, 12px);
  font-weight: 950;
  letter-spacing: 0.2em;
}

.schedule-heading strong {
  font-size: clamp(13px, 0.9vw, 18px);
}

.schedule-modes {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
}

.schedule-modes button {
  min-width: 48px;
  min-height: 30px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: clamp(9px, 0.58vw, 11px);
  font-weight: 900;
  cursor: pointer;
}

.schedule-modes button.is-selected {
  color: var(--accent);
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.schedule-day {
  display: grid;
  min-width: 0;
  min-height: clamp(58px, 7.2vh, 82px);
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr auto;
  align-content: center;
  gap: 4px clamp(7px, 0.6vw, 11px);
  border-left: 1px solid var(--line);
  padding: clamp(8px, 0.8vw, 13px);
}

.schedule-day:first-child {
  border-left: 0;
}

.schedule-day i {
  grid-row: 1 / 4;
  align-self: center;
  color: var(--accent);
  font-size: clamp(9px, 0.58vw, 11px);
  font-style: normal;
  font-weight: 900;
}

.schedule-day small {
  color: var(--muted-strong);
  font-size: clamp(9px, 0.62vw, 12px);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.schedule-day b {
  overflow: hidden;
  font-size: clamp(10px, 0.72vw, 14px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-day em {
  color: var(--muted);
  font-size: clamp(9px, 0.6vw, 12px);
  font-style: normal;
}

.schedule-day.is-off {
  opacity: 0.55;
}

.month-grid {
  display: none;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.month-grid span {
  display: grid;
  min-height: 38px;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-left: 1px solid var(--line);
  padding: 6px 8px;
}

.month-grid span:first-child {
  border-left: 0;
}

.month-grid b,
.month-grid i {
  font-size: clamp(9px, 0.56vw, 11px);
}

.month-grid i {
  color: var(--muted);
  font-style: normal;
}

.month-grid .is-off {
  color: var(--accent);
}

body.schedule-month .schedule-days {
  display: none;
}

body.schedule-month .month-grid {
  display: grid;
}

/* Tablet / narrow desktop */
@media (max-width: 980px) {
  :root {
    --frame-x: clamp(22px, 3.5vw, 34px);
    --frame-y: clamp(20px, 3vh, 30px);
  }

  .scene img {
    object-position: 57% 42%;
  }

  .scene::after {
    background:
      linear-gradient(180deg, rgb(9 6 11 / 38%) 0 30%, transparent 48%),
      linear-gradient(0deg, rgb(9 6 11 / 96%) 0 54%, rgb(9 6 11 / 18%) 84%);
  }

  .title-block {
    top: 4.5%;
    right: auto;
    bottom: auto;
    left: 5%;
    width: 88%;
    padding-top: 10px;
    text-align: left;
  }

  .title-kicker {
    justify-content: flex-start;
    margin-bottom: 8px;
    font-size: clamp(9px, 1.25vw, 12px);
  }

  .title-block h1 {
    justify-items: start;
    margin: 0;
  }

  .title-block h1 strong {
    font-size: clamp(66px, 16vw, 120px);
  }

  .title-block h1 small {
    justify-self: start;
    margin-top: 9px;
    font-size: clamp(14px, 2.1vw, 20px);
  }

  .title-block > p {
    margin-top: 11px;
    font-size: clamp(11px, 1.45vw, 14px);
  }

  .about-line {
    top: 30%;
    left: 5%;
    width: 84%;
    gap: 7px;
  }

  .about-line > span {
    font-size: clamp(10px, 1.45vw, 13px);
  }

  .about-line em {
    font-size: clamp(11px, 1.55vw, 14px);
  }

  .profile-line {
    top: 43%;
    right: auto;
    bottom: auto;
    left: 5%;
    display: grid;
    width: 90%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 2vw, 20px);
    border-top: 1px solid var(--line-strong);
    border-left: 0;
    padding-top: 12px;
    padding-left: 0;
  }

  .profile-line dt {
    font-size: clamp(8px, 1.2vw, 11px);
  }

  .profile-line dd {
    font-size: clamp(11px, 1.65vw, 15px);
  }

  .schedule-flow {
    top: auto;
    right: 5%;
    bottom: 8%;
    left: 5%;
  }

  .schedule-days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .schedule-day {
    min-height: 54px;
    padding: 7px 8px;
  }

  .schedule-day:nth-child(5) {
    border-left: 0;
  }

  .connect-line {
    right: 5%;
    bottom: 2%;
    left: 5%;
    width: auto;
    gap: 12px;
    padding-top: 8px;
  }

  .month-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .month-grid span:nth-child(9),
  .month-grid span:nth-child(17),
  .month-grid span:nth-child(25) {
    border-left: 0;
  }
}

/* Phone */
@media (max-width: 620px) {
  .title-block {
    top: 4%;
    width: 90%;
  }

  .title-kicker {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .title-block h1 strong {
    font-size: clamp(58px, 18vw, 90px);
  }

  .title-block h1 small {
    gap: 9px;
    font-size: 13px;
  }

  .title-block h1 small::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .title-block > p {
    display: none;
  }

  .about-line {
    top: 25%;
    width: 88%;
  }

  .about-line em {
    font-size: 10px;
  }

  .profile-line {
    top: 36%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    padding-top: 9px;
  }

  .profile-line dt {
    font-size: 7px;
  }

  .profile-line dd {
    font-size: 10px;
  }

  .schedule-flow {
    bottom: 8%;
  }

  .schedule-heading {
    margin-bottom: 5px;
  }

  .schedule-heading small,
  .schedule-heading strong,
  .schedule-modes button {
    font-size: 7px;
  }

  .schedule-modes button {
    min-width: 36px;
    min-height: 26px;
  }

  .schedule-day {
    min-height: 46px;
    padding: 5px 4px;
  }

  .schedule-day i,
  .schedule-day em,
  .schedule-day small {
    font-size: 6px;
  }

  .schedule-day b {
    font-size: 8px;
  }

  .connect-line {
    gap: 8px;
    padding-top: 7px;
  }

  .next-live span,
  .external-links a {
    font-size: 6px;
  }

  .next-live strong {
    font-size: 9px;
  }

  .external-links {
    gap: 4px 8px;
  }

  .month-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .month-grid span {
    min-height: 24px;
    padding: 3px;
  }

  .month-grid span:nth-child(8),
  .month-grid span:nth-child(15),
  .month-grid span:nth-child(22),
  .month-grid span:nth-child(29) {
    border-left: 0;
  }

  .month-grid i {
    display: none;
  }
}

/* Short desktop windows */
@media (max-height: 720px) and (min-width: 981px) {
  .title-block {
    bottom: clamp(132px, 20vh, 150px);
    padding-top: 10px;
  }

  .title-block h1 strong {
    font-size: clamp(92px, 11.5vw, 180px);
  }

  .title-block h1 small {
    margin-top: 8px;
    font-size: clamp(14px, 1.15vw, 20px);
  }

  .title-block > p {
    margin-top: 10px;
    font-size: clamp(11px, 0.84vw, 14px);
  }

  .profile-line {
    top: 9.5%;
    gap: 11px;
  }

  .profile-line dt {
    font-size: clamp(9px, 0.62vw, 11px);
  }

  .profile-line dd {
    font-size: clamp(13px, 0.9vw, 17px);
  }

  .about-line {
    top: 37.5%;
  }

  .connect-line {
    bottom: clamp(132px, 20vh, 150px);
    padding-top: 9px;
  }

  .schedule-day {
    min-height: 50px;
  }
}

/* Very short landscape windows use two clean columns. */
@media (max-width: 980px) and (max-height: 600px) {
  .title-block {
    top: 5%;
    left: 4%;
    width: 42%;
  }

  .title-block h1 strong {
    font-size: clamp(54px, 11vw, 92px);
  }

  .title-block > p {
    display: none;
  }

  .about-line {
    top: 43%;
    left: 4%;
    width: 41%;
  }

  .profile-line {
    top: 61%;
    left: 4%;
    width: 42%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 12px;
  }

  .schedule-flow {
    top: 7%;
    right: 3%;
    bottom: auto;
    left: auto;
    width: 48%;
  }

  .connect-line {
    right: 3%;
    bottom: 4%;
    left: 50%;
    width: auto;
  }
}

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

/* ---- added for site delivery: fixed top nav (navigation into the site)
   + contact modal. Self-contained; does not alter the cover composition. ---- */
.covnav {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px clamp(20px, 4vw, 46px);
  background: linear-gradient(180deg, rgb(7 5 10 / 60%), rgb(7 5 10 / 0%));
}
.covnav .cn-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  font-family: var(--display-font);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--text);
}
.covnav .cn-logo::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  content: "";
  animation: rec-blink 2.4s ease-in-out infinite;
}
@keyframes rec-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.28;
  }
}
.covnav .cn-logo em {
  align-self: baseline;
  font-family: var(--body-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.24em;
  color: var(--accent);
}
.cn-menu {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
}
.cn-menu a {
  color: var(--muted-strong);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cn-menu a:hover {
  color: var(--text);
}
.cn-menu a.on {
  color: var(--accent);
}
.cn-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cn-ask {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 17px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.cn-ask::after {
  font-size: 13px;
  content: "↗";
}
.cn-ask:hover {
  background: var(--accent);
  color: #fff;
}
.cn-ic {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
}
.cn-ic:hover {
  border-color: var(--accent);
}
.cn-burger {
  display: none;
}
@media (max-width: 720px) {
  .cn-menu {
    position: fixed;
    top: 56px;
    right: 0;
    left: 0;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: rgb(9 6 11 / 92%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: max-height 0.28s ease;
  }
  .cn-menu.open {
    max-height: 360px;
  }
  .cn-menu a {
    padding: 14px clamp(20px, 4vw, 46px);
    border-top: 1px solid var(--line);
    font-size: 14px;
  }
  .cn-burger {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
  }
  .cn-burger b {
    position: relative;
    display: block;
    width: 16px;
    height: 2px;
    background: currentColor;
  }
  .cn-burger b::before,
  .cn-burger b::after {
    position: absolute;
    left: 0;
    width: 16px;
    height: 2px;
    background: currentColor;
    content: "";
  }
  .cn-burger b::before {
    top: -5px;
  }
  .cn-burger b::after {
    top: 5px;
  }
}
.covmask {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgb(6 4 8 / 72%);
}
.covmask.open {
  display: grid;
}
.covmodal {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #140e18;
  box-shadow: 0 24px 60px rgb(0 0 0 / 50%);
}
.covmodal .k {
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.22em;
}
.covmodal h3 {
  margin: 4px 0 12px;
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 950;
}
.covmodal textarea {
  width: 100%;
  box-sizing: border-box;
  min-height: 104px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: rgb(255 250 254 / 5%);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  resize: vertical;
}
.covmodal .hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
}
.covmodal .send {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}
.covmodal .x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  cursor: pointer;
}

/* ============ v4.6 — phone shows PC layout + SOOP-app embed safety ============ */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.open-full {
  display: none;
}
body.cover.embed .open-full {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 13px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-decoration: none;
}

/* iframe: fixed anchors to the huge iframe box -> re-base to document */
body.embed .covnav,
body.embed #fx,
body.embed .covmask {
  position: absolute;
}

/* phone (viewport 1180) & app iframe: cover keeps 16:9 instead of stretching to svh */
body.cover.fit,
body.cover.embed {
  overflow: visible;
  height: auto;
}
body.cover.fit .showcase,
body.cover.fit .concept,
body.cover.embed .showcase,
body.cover.embed .concept {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
}
