* {
  box-sizing: border-box;
}

:root {
  --blue: #144dc9;
  --black: #080808;
  --muted: #666b75;
  --line: #e7e9ee;
  --bg: #f7f8fb;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, Pretendard, "Noto Sans KR", Arial, sans-serif;
  background:
    radial-gradient(circle at 16% 12%, rgba(20,77,201,.08), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(20,77,201,.06), transparent 24%),
    var(--bg);
  color: var(--black);
}

body {
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
  isolation: isolate;
}

.glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .35;
  z-index: -1;
}

.glow-1 {
  width: 260px;
  height: 260px;
  background: #dbe6ff;
  top: -70px;
  left: -60px;
}

.glow-2 {
  width: 300px;
  height: 300px;
  background: #e7ecff;
  right: -90px;
  bottom: -80px;
}

.hero-card {
  width: min(1040px, 100%);
  text-align: center;
  padding: 72px 44px 58px;
}

.logo {
  display: block;
  width: min(720px, 78vw);
  max-height: 290px;
  object-fit: contain;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.divider {
  width: 54px;
  height: 2px;
  background: var(--blue);
  margin: 30px auto 26px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  color: var(--blue);
}

h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

h1 span {
  color: var(--blue);
}

.intro {
  margin: 28px auto 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  word-break: keep-all;
}

.services {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.services i {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.coming {
  margin: 54px 0 0;
  color: #9aa0aa;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
}

@media (max-width: 640px) {
  .hero {
    padding: 24px 18px;
  }

  .hero-card {
    padding: 44px 6px 36px;
  }

  .logo {
    width: 92vw;
  }

  .divider {
    margin-top: 18px;
  }

  .intro br {
    display: none;
  }

  .services {
    gap: 12px;
    letter-spacing: .14em;
  }

  .coming {
    margin-top: 38px;
  }
}
