:root {
  --bg: #12141a;
  --text: #f5f1e8;
  --line: rgba(245, 241, 232, .14);
  --number: rgba(245, 241, 232, .42);
}

* { box-sizing: border-box; }

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif;
}

.screen {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.05), transparent 30%),
    linear-gradient(145deg, #171a22 0%, #101217 62%, #181417 100%);
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  z-index: -2;
}

.orbit.large { width: min(76vw, 980px); aspect-ratio: 1; }
.orbit.small { width: min(47vw, 610px); aspect-ratio: 1; }

.ball {
  position: absolute;
  display: grid;
  place-items: center;
  width: clamp(70px, 8.5vw, 132px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.018);
  color: var(--number);
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 700;
  letter-spacing: -.04em;
  z-index: -1;
}

.b1 { top: 10%; left: 14%; }
.b2 { top: 17%; right: 13%; transform: scale(.77); }
.b3 { bottom: 12%; left: 18%; transform: scale(.70); }
.b4 { bottom: 8%; right: 18%; }
.b5 { top: 47%; left: 4%; transform: scale(.57); }
.b6 { top: 42%; right: 4%; transform: scale(.61); }

.brand {
  padding: 32px;
  text-align: center;
}

.english {
  display: block;
  margin-bottom: 14px;
  color: rgba(245,241,232,.50);
  font-size: clamp(10px, .9vw, 14px);
  font-weight: 700;
  letter-spacing: .42em;
  text-indent: .42em;
}

.korean {
  display: block;
  font-size: clamp(54px, 9.5vw, 148px);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.075em;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .orbit.large { width: 118vw; }
  .orbit.small { width: 77vw; }
  .ball { width: 76px; font-size: 16px; }
  .b1 { top: 8%; left: 7%; }
  .b2 { top: 15%; right: 3%; }
  .b3 { bottom: 10%; left: 7%; }
  .b4 { bottom: 7%; right: 7%; }
  .b5 { top: 46%; left: -6%; }
  .b6 { top: 45%; right: -6%; }
  .brand { width: 100%; padding-inline: 16px; }
  .english { margin-bottom: 12px; font-size: 10px; letter-spacing: .31em; text-indent: .31em; }
  .korean { font-size: clamp(40px, 15vw, 72px); }
}
