:root {
  color-scheme: light;
  --background: #eef1f8;
  --surface: #ffffff;
  --ink: #172033;
  --muted: #6f788a;
  --line: #e8ebf1;
  --primary: #245fc5;
  --success: #18794e;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 24px;
  padding: max(32px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
}

.verification-card {
  width: min(100%, 520px);
  padding: 54px 56px 38px;
  background: var(--surface);
  border: 1px solid rgba(30, 45, 72, 0.06);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(31, 48, 82, 0.08);
  text-align: center;
}

.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 23px;
  color: var(--primary);
}

.status-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 12px rgba(36, 95, 197, 0.18));
}

.eyebrow {
  margin: 0 0 11px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1 {
  margin: 0;
  font-size: clamp(27px, 6vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.mobile-break {
  display: none;
}

.description {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.divider {
  height: 1px;
  margin: 35px 0 13px;
  background: var(--line);
}

.verification-info {
  margin: 0;
}

.verification-info > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
}

.verification-info dt {
  color: var(--muted);
  font-size: 14px;
}

.verification-info dd {
  display: flex;
  align-items: center;
  margin: 0;
  color: #2a3345;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.status-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(24, 121, 78, 0.1);
}

.notice {
  margin: 25px 0 0;
  padding: 13px 16px;
  background: #f7f9fc;
  border-radius: 10px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.footer-note {
  margin: 0;
  color: #7d8799;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 480px) {
  .page-shell {
    place-content: center;
    padding-right: 16px;
    padding-left: 16px;
  }

  .verification-card {
    padding: 43px 26px 27px;
    border-radius: 20px;
  }

  .status-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 21px;
  }

  .mobile-break {
    display: initial;
  }

  .description {
    font-size: 14px;
  }

  .divider {
    margin-top: 29px;
  }

  .verification-info > div {
    min-height: 50px;
  }

  .verification-info dt,
  .verification-info dd {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
