:root {
  color-scheme: light;
  --ink: #11172b;
  --muted: #61687d;
  --line: #ddd8fb;
  --violet: #5b45eb;
  --magenta: #d93ff0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 67% 52%, rgba(139, 92, 246, .10), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #fdfcff 100%);
}

.page {
  width: min(100% - 48px, 1390px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 58px 0 32px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  width: fit-content;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 750;
  letter-spacing: -.035em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(91, 69, 235, .23);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: clamp(24px, 6vw, 96px);
  align-items: center;
  padding: 56px 0 64px;
}

.copy { max-width: 690px; }

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  line-height: .99;
  letter-spacing: -.055em;
}

.english-title {
  margin: 22px 0 0;
  font-size: clamp(1.75rem, 3.1vw, 3rem);
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: -.04em;
  background: linear-gradient(110deg, var(--violet), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.description {
  margin-top: 36px;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.15rem, 1.55vw, 1.48rem);
  line-height: 1.48;
}

.description p { margin: 0 0 10px; }

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 40px 0 0;
  color: var(--violet);
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 620;
}

.status span {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--magenta));
  box-shadow: 0 5px 14px rgba(116, 67, 239, .28);
}

.status b { color: #a342ed; }
.status em { color: var(--magenta); font-style: normal; }

.hangul {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}

.hangul > span {
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: clamp(20rem, 34vw, 33rem);
  line-height: .88;
  font-weight: 300;
  color: rgba(105, 69, 225, .11);
  user-select: none;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--violet), var(--magenta));
  box-shadow: 0 26px 56px rgba(117, 69, 231, .22);
}

.orb-one { width: 88px; height: 88px; right: 17%; bottom: 13%; }
.orb-two { width: 42px; height: 42px; right: 6%; top: 19%; opacity: .78; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}

footer nav { display: flex; gap: 42px; }
footer a { color: var(--violet); text-decoration: none; }
footer a:hover, footer a:focus-visible { text-decoration: underline; }

@media (max-width: 820px) {
  .page { width: min(100% - 34px, 620px); padding-top: 28px; }
  .brand { gap: 14px; font-size: 1.35rem; }
  .brand img { width: 46px; height: 46px; border-radius: 11px; }
  .hero { grid-template-columns: 1fr; padding: 44px 0 52px; gap: 28px; }
  .copy { display: contents; }
  h1, .english-title, .description, .status { position: relative; z-index: 1; }
  h1 { font-size: clamp(2.65rem, 12vw, 4.1rem); order: 1; }
  .english-title { font-size: clamp(1.65rem, 7.3vw, 2.4rem); order: 2; margin-top: -12px; }
  .description { font-size: 1.08rem; order: 4; margin-top: -8px; }
  .status { order: 5; margin-top: 0; flex-wrap: wrap; }
  .hangul { order: 3; min-height: 225px; margin: -20px 0 -8px; overflow: hidden; }
  .hangul > span { font-size: min(72vw, 25rem); }
  .orb-one { width: 58px; height: 58px; right: 10%; bottom: 8%; }
  .orb-two { width: 30px; height: 30px; right: 18%; top: 10%; }
  footer { font-size: .86rem; }
  footer nav { gap: 22px; }
}

@media (max-width: 430px) {
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .orb { animation: float 6s ease-in-out infinite alternate; }
  .orb-two { animation-delay: -2.4s; }
  @keyframes float { to { transform: translateY(-12px); } }
}
