:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: rgba(255, 255, 255, 0.78);
  --ink: #101828;
  --body: #344054;
  --muted: #667085;
  --line: #d9e2f0;
  --line-soft: rgba(16, 24, 40, 0.08);
  --blue: #2f63f6;
  --blue-soft: #edf3ff;
  --cyan: #12b8d7;
  --amber: #f59e0b;
  --shadow: 0 24px 80px rgba(16, 24, 40, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 249, 252, 0.96)),
    linear-gradient(90deg, transparent 0 31px, rgba(47, 99, 246, 0.045) 32px),
    linear-gradient(180deg, transparent 0 31px, rgba(47, 99, 246, 0.04) 32px),
    var(--bg);
  background-size:
    auto,
    32px 32px,
    32px 32px,
    auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, transparent 42%, rgba(47, 99, 246, 0.055) 50%, transparent 58%, transparent 100%),
    linear-gradient(180deg, rgba(47, 99, 246, 0.075), transparent 36%);
  animation: pageSweep 9s ease-in-out infinite;
}

.page {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1040px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 28px 0 34px;
}

.brandbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.brand img {
  display: block;
}

.brand-ksmngr img {
  width: 30px;
  height: 30px;
}

.brand-weflview img {
  width: 148px;
  height: auto;
  filter: invert(1);
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}

.notice {
  align-self: center;
  justify-self: center;
  width: min(760px, 100%);
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 10px);
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(47, 99, 246, 0.16), rgba(18, 184, 215, 0.1)) border-box;
}

.status-mark::before,
.status-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.status-mark::before {
  inset: -8px;
  border: 1px solid rgba(47, 99, 246, 0.14);
  animation: statusPulse 2.8s ease-out infinite;
}

.status-mark::after {
  right: 14px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.status-mark span {
  display: block;
  width: 10px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
  animation: statusBars 1.5s ease-in-out infinite;
}

.status-mark span:nth-child(2) {
  animation-delay: 0.14s;
}

.status-mark span:nth-child(3) {
  animation-delay: 0.28s;
}

.eyebrow,
h1,
p,
dl,
dd {
  margin-top: 0;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(42px, 5.8vw, 60px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  text-align: center;
  word-break: keep-all;
}

.summary {
  max-width: 650px;
  margin: 0 auto 26px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.68;
  text-align: center;
  word-break: keep-all;
}

.details {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 0;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.details div {
  padding: 16px 18px 17px 0;
}

.details div + div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}

dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

dd {
  margin-left: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.5;
  word-break: keep-all;
}

.closing {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
  text-align: center;
  word-break: keep-all;
}

@keyframes pageSweep {
  0%,
  100% {
    transform: translateX(-34%);
    opacity: 0.52;
  }
  50% {
    transform: translateX(34%);
    opacity: 0.95;
  }
}

@keyframes statusPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes statusBars {
  0%,
  100% {
    height: 18px;
    opacity: 0.68;
  }
  50% {
    height: 30px;
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 520px);
    padding: 24px 0 32px;
  }

  .brandbar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
  }

  .notice {
    padding: 30px 22px;
  }

  .status-mark {
    width: 72px;
    height: 72px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: 42px;
  }

  .summary {
    font-size: 17px;
    text-align: left;
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }

  .closing {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
