:root {
  color-scheme: light;
  --paper: #f6f1e8;
  --ink: #202327;
  --muted: #656c72;
  --line: #d7cbb8;
  --accent: #d7412f;
  --deep: #183b42;
  font-family:
    Inter, Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: stretch;
}

.hero,
.status-panel {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 7vw, 96px);
}

.hero {
  background:
    linear-gradient(135deg, rgba(215, 65, 47, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(24, 59, 66, 0.09), transparent 48%);
}

.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: clamp(4.4rem, 12vw, 9.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--deep);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--deep);
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.55;
}

.status-panel {
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.status-panel p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  min-width: 116px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 13px 18px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.status-list {
  display: grid;
  gap: 0;
  width: min(100%, 520px);
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.status-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.status-list span {
  color: var(--muted);
}

.status-list strong {
  color: var(--deep);
  text-align: right;
}

@media (max-width: 820px) {
  .page-shell {
    display: block;
  }

  .hero,
  .status-panel {
    min-height: auto;
    padding: 44px 22px;
  }

  .hero {
    min-height: 78vh;
  }

  .status-panel {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .status-list li {
    display: grid;
    gap: 6px;
  }

  .status-list strong {
    text-align: left;
  }
}
