* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0b1220;
  color: #f1f5f9;
}

/* 배경(클릭 가로채기 방지) */
.bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none; /* ★ 중요 */
}

.bg::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.55), transparent 70%);
  top: -260px;
  left: -260px;
}

.bg::after {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.55), transparent 70%);
  bottom: -240px;
  right: -240px;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 18px 60px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 0 18px rgba(124,58,237,.45);
}

.link {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
}

.link:hover { text-decoration: underline; }

.card {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(18px);
  margin-bottom: 18px;
}

.hero .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.16);
  border: 1px solid rgba(99, 102, 241, 0.22);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.title {
  font-size: 30px;
  margin: 0 0 10px;
  line-height: 1.2;
}

.smallTitle { font-size: 24px; }

.subtitle { color: #cbd5e1; margin: 0 0 18px; }

.muted { color: #94a3b8; }
.mini { font-size: 12px; }

.fineprint {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 12px;
}

.ctaRow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,.25);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.arrow { opacity: .95; }

.meta { display: flex; gap: 8px; flex-wrap: wrap; }

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(148,163,184,.14);
  border: 1px solid rgba(148,163,184,.22);
  color: #e2e8f0;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.small h2 { margin: 0 0 8px; font-size: 16px; }
.small p { margin: 0; }

.field .label { display: block; font-weight: 700; margin-bottom: 6px; }
.req { color: #fda4af; font-weight: 900; }

input, select, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,.25);
  background: rgba(15, 23, 42, 0.65);
  color: #fff;
  outline: none;
}

input::placeholder, textarea::placeholder { color: rgba(203,213,225,.6); }

.q { margin-top: 10px; }
.q h2 { font-size: 16px; margin: 0 0 10px; }

.chips, .radios {
  display: grid;
  gap: 10px;
}

.chip, .radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,.18);
  background: rgba(2, 6, 23, 0.20);
}

.chip input, .radio input { width: auto; }

.soft { margin-top: 10px; }

.rowBetween {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.progressWrap { width: 160px; }
.progress {
  height: 10px;
  background: rgba(148,163,184,.20);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}

.bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transition: width .25s ease;
}

.actions { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }

.footer { text-align: center; margin-top: 22px; font-size: 12px; }

@media (max-width: 820px) {
  .grid2 { grid-template-columns: 1fr; }
}
