:root {
  --check-primary: #1e3a5f;
  --check-primary-dark: #172e4a;
  --check-blue: #2563eb;
  --check-blue-dark: #1d4ed8;
  --check-blue-soft: #dbeafe;
  --check-success: #0f766e;
  --check-success-soft: #ccfbf1;
  --check-warning: #d97706;
  --check-warning-soft: #fef3c7;
  --check-danger: #dc2626;
  --check-danger-soft: #fee2e2;
  --check-bg: #f3f7fb;
  --check-surface: #ffffff;
  --check-surface-soft: #eef4fb;
  --check-text: #1f2937;
  --check-muted: #6b7280;
  --check-border: #d8e2ee;
  --check-border-strong: #b9c9dc;
  --check-shadow: 0 20px 52px rgba(30, 58, 95, 0.10);
  --check-shadow-soft: 0 12px 34px rgba(30, 58, 95, 0.07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--check-text);
  background: var(--check-bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.72;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
input:disabled {
  cursor: not-allowed;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 850;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--check-blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--check-blue);
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

.lead {
  color: #4b5563;
  font-size: clamp(1.02rem, 1.65vw, 1.16rem);
  line-height: 1.82;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.soft-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  color: var(--check-primary);
  background: var(--check-blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
}

.text-link {
  color: var(--check-blue);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.muted-text {
  color: var(--check-muted);
}
