* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP",
    sans-serif;
  color: #211f21;
  background: #f6f2f0;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(217, 178, 183, 0.24), transparent 40%),
    linear-gradient(180deg, #fbf8f6 0%, #f3edeb 100%);
}

.page-shell {
  width: min(100%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 64px 20px 32px;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #9a6c74;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 12vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.tagline {
  margin: 24px 0 36px;
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.character-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(50, 35, 39, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 50px rgba(70, 44, 50, 0.08);
  backdrop-filter: blur(18px);
}

.portrait-placeholder {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  display: grid;
  place-items: end center;
  padding: 12px;
  background:
    linear-gradient(145deg, rgba(154, 108, 116, 0.18), rgba(244, 224, 225, 0.8)),
    #eee2e2;
  color: #70434c;
  font-weight: 700;
}

.character-name {
  margin: 4px 0 2px;
  font-size: 22px;
  font-weight: 700;
}

.character-name span {
  font-size: 14px;
  font-weight: 500;
  color: #786f71;
}

.character-role,
.character-copy {
  margin: 0;
  color: #675e60;
}

.character-role {
  font-size: 14px;
}

.character-copy {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
}

.status-card {
  margin-top: 18px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  background: #272326;
  color: white;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #91d5aa;
  box-shadow: 0 0 0 6px rgba(145, 213, 170, 0.14);
}

.status-title,
.status-copy {
  margin: 0;
}

.status-title {
  font-size: 14px;
  font-weight: 650;
}

.status-copy {
  margin-top: 3px;
  font-size: 12px;
  color: #cfc7ca;
}

footer {
  padding-top: 44px;
  text-align: center;
  color: #867d7f;
  font-size: 12px;
}

footer p {
  margin: 6px 0;
}

.ai-note {
  color: #a29799;
}

@media (max-width: 390px) {
  .page-shell {
    padding-top: 44px;
  }

  .character-card {
    grid-template-columns: 92px 1fr;
  }

  .tagline {
    font-size: 20px;
  }
}
