@import url("https://fonts.googleapis.com/css2?family=Prosto+One&display=swap");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");

:root {
  color-scheme: light;
  --black: #000000;
  --white: #ffffff;
  --ink: #070707;
  --muted: #696969;
  --paper: #fbfbfb;
  --font-display: "Prosto One", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --font-text: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
  --font-mono: "Roboto Mono", "SFMono-Regular", Consolas, monospace;
  --pad: clamp(28px, 7vw, 92px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.2;
  word-break: keep-all;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: 0;
}

h2 span,
p span {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  padding: 24px clamp(20px, 6vw, 64px);
  pointer-events: none;
}

.site-nav {
  display: flex;
  gap: clamp(8px, 2.4vw, 18px);
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  pointer-events: auto;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  min-width: 66px;
  border-radius: 999px;
  padding: 8px 14px 9px;
  background: rgba(255, 255, 255, 0.9);
  color: #303030;
  font-family: var(--font-display);
  font-size: clamp(1rem, 4.2vw, 1.2rem);
  font-weight: 700;
  line-height: 0.95;
  text-align: center;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: center;
  grid-auto-rows: max-content;
  row-gap: 0;
  padding: 128px var(--pad) 33svh;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.hero::before,
.hero::after,
.hero-gradient,
.hero-white-fade {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  z-index: -4;
  width: 100%;
  height: 100%;
}

.hero::before {
  z-index: -5;
  background:
    radial-gradient(circle at 108% -4%, rgba(161, 244, 244, 0.95), rgba(161, 244, 244, 0) 18%),
    radial-gradient(circle at 80% 3%, rgba(116, 117, 255, 0.72), rgba(116, 117, 255, 0) 29%),
    radial-gradient(circle at 8% 0%, rgba(244, 99, 214, 0.68), rgba(244, 99, 214, 0) 34%),
    linear-gradient(157deg, #ed87df 0%, #f7d3ee 26%, #efe9fb 42%, #fbfbfb 58%, #d9fbf5 74%, #f8f8f8 100%);
}

.hero::after {
  z-index: -3;
  background:
    linear-gradient(206deg, rgba(255, 255, 255, 0) 0 38%, rgba(171, 255, 232, 0.85) 41%, rgba(255, 255, 255, 0.95) 45%, rgba(246, 190, 232, 0.75) 50%, rgba(255, 255, 255, 0) 57%),
    linear-gradient(23deg, rgba(255, 255, 255, 0) 0 65%, rgba(255, 246, 255, 0.96) 72%, rgba(190, 224, 255, 0.55) 78%, rgba(255, 255, 255, 0) 86%);
  filter: blur(8px);
  opacity: 0.72;
}

.hero-white-fade {
  z-index: -2;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 48%);
}

.halo-logo {
  width: min(46vw, 240px);
  margin: 0 auto 28px;
  height: auto;
  object-fit: contain;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8.8vw, 6.125rem);
  line-height: 0.94;
}

.hero-copy {
  margin-top: 14px;
  font-size: clamp(1.125rem, 4.8vw, 2.375rem);
  font-weight: 500;
  line-height: 1.28;
}

.section {
  padding: clamp(70px, 18vw, 170px) var(--pad);
  background: var(--paper);
}

.preview-section {
  padding-top: 0;
}

.preview-visual {
  position: relative;
  margin: 0 calc(var(--pad) * -1) clamp(54px, 12vw, 100px);
  background: #f2f2f2;
  overflow: hidden;
}

.preview-visual::before,
.preview-visual::after,
.image-band::before,
.image-band::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  height: clamp(72px, 18vw, 180px);
  pointer-events: none;
}

.preview-visual::before,
.image-band::before {
  top: 0;
  background: linear-gradient(180deg, rgba(251, 251, 251, 1) 0%, rgba(251, 251, 251, 0) 100%);
}

.preview-visual::after,
.image-band::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(251, 251, 251, 1) 0%, rgba(251, 251, 251, 0) 100%);
}

.preview-visual img {
  min-height: 58svh;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.32) contrast(0.95) brightness(1.2);
}

.text-block {
  max-width: 820px;
}

.text-block h2 {
  font-size: clamp(1.75rem, 7.2vw, 3rem);
  font-weight: 500;
  line-height: 1.28;
}

.preview-section .statement-copy {
  font-size: clamp(1.25rem, 5.2vw, 2.25rem);
  line-height: 1.34;
}

.text-block p {
  font-size: clamp(1rem, 4.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.5;
}

.text-block p + p {
  margin-top: clamp(1.875rem, 7.2vw, 3.625rem);
}

.button {
  display: flex;
  width: min(100%, 580px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: clamp(34px, 8vw, 72px) auto 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-text);
  font-size: clamp(1rem, 4.3vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.en {
  font-family: var(--font-display);
}

.button.is-disabled,
.button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.42;
}

.image-band {
  position: relative;
  min-height: 64svh;
  background: #f6f6f6;
  overflow: hidden;
}

.image-band img {
  height: clamp(560px, 82svh, 1040px);
  object-fit: cover;
  object-position: center;
  filter: brightness(1.13) saturate(0.92);
}

.image-band.soft img {
  filter: brightness(1.58) saturate(0.42) contrast(0.78);
}

.brand-section,
.crew-section,
.nset-section {
  padding-top: clamp(78px, 20vw, 190px);
  padding-bottom: clamp(96px, 22vw, 210px);
}

.release-list {
  display: grid;
  gap: 10px;
  margin: clamp(30px, 7vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.release-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding: 18px 0;
  font-size: clamp(1rem, 4.2vw, 1.875rem);
  line-height: 1.28;
}

.release-list li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.release-list span:first-child {
  font-weight: 700;
}

.release-list span:last-child {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 34px var(--pad) 44px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.4;
}

.blank-page {
  min-height: 100svh;
  background: var(--paper);
}

.blank-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: var(--pad);
}

.blank-back {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 8vw, 4rem);
  line-height: 1;
  text-decoration: none;
}

@media (max-width: 420px) {
  .site-header {
    padding-top: 20px;
  }

  .site-nav a {
    min-width: 58px;
    padding-inline: 12px;
  }

  .button {
    min-height: 46px;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-top: 34px;
  }

  .hero {
    padding-bottom: 28svh;
  }

  .site-nav a {
    font-size: clamp(1.25rem, 2.2vw, 1.875rem);
  }

  .section {
    display: grid;
    place-items: center;
  }

  .preview-section {
    display: block;
  }

  .preview-section .text-block,
  .brand-section .text-block,
  .crew-section .text-block,
  .nset-section .text-block {
    width: min(100%, 1120px);
    margin-inline: auto;
  }

  .preview-visual {
    margin-bottom: 90px;
  }

  .preview-visual img {
    min-height: 66svh;
  }

  .site-footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
