:root {
  color-scheme: dark;
  font-family:
    Inter, Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #080b10;
  color: #f4f1e8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgb(142 116 74 / 18%), transparent 36rem),
    radial-gradient(circle at 92% 20%, rgb(36 94 104 / 16%), transparent 34rem),
    #080b10;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 80px 0 44px;
}

.hero {
  max-width: 900px;
}

.eyebrow,
article span,
.receipt span,
footer {
  color: #a8a298;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  border: 1px solid;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.badge-pass {
  border-color: #5d806b;
  background: rgb(53 93 68 / 28%);
  color: #b8e0c3;
}

.badge-hold {
  border-color: #9a7743;
  background: rgb(123 87 37 / 24%);
  color: #f0c983;
}

h1 {
  margin: 0;
  max-width: 880px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.lead {
  max-width: 740px;
  margin: 34px 0 0;
  color: #bbb6ac;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.8;
}

.notice {
  margin-top: 32px;
  border-left: 3px solid #c89d58;
  background: linear-gradient(90deg, rgb(135 94 38 / 18%), transparent);
  padding: 20px 22px;
  color: #ead7b5;
  font-weight: 650;
  line-height: 1.7;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid #242932;
  border-radius: 18px;
  background: #242932;
}

article {
  min-height: 190px;
  padding: 28px;
  background: rgb(13 17 24 / 96%);
}

article strong {
  display: block;
  margin-top: 26px;
  color: #e8d7b4;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  overflow-wrap: anywhere;
}

article p {
  margin: 12px 0 0;
  color: #918d85;
  line-height: 1.6;
}

.receipt {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
  padding: 26px 4px;
  border-top: 1px solid #242932;
  border-bottom: 1px solid #242932;
}

.receipt strong,
.receipt code {
  display: block;
  margin-top: 9px;
  color: #f4f1e8;
  font-size: 1rem;
}

.receipt code {
  color: #c7b082;
  font-family: "Cascadia Code", Consolas, monospace;
  overflow-wrap: anywhere;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1120px);
    padding-top: 44px;
  }

  .grid,
  .receipt {
    grid-template-columns: 1fr;
  }

  article {
    min-height: 0;
  }

  footer {
    flex-direction: column;
  }
}
