:root {
  --bg: #f5efe4;
  --bg-deep: #1f2a2c;
  --ink: #182022;
  --muted: #5d625d;
  --card: rgba(255, 250, 243, 0.72);
  --card-strong: rgba(31, 42, 44, 0.9);
  --line: rgba(24, 32, 34, 0.12);
  --accent: #cb5d3d;
  --accent-soft: #f4b071;
  --shadow: 0 24px 80px rgba(24, 32, 34, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    radial-gradient(circle at top left, rgba(244, 176, 113, 0.7), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(203, 93, 61, 0.3), transparent 22%),
    linear-gradient(135deg, #f8f1e6 0%, #efe5d4 48%, #e2ddd2 100%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 32px;
}

.glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(32px);
  opacity: 0.45;
  pointer-events: none;
}

.glow-left {
  left: -10rem;
  bottom: -8rem;
  background: rgba(203, 93, 61, 0.28);
  animation: drift 14s ease-in-out infinite;
}

.glow-right {
  top: -12rem;
  right: -9rem;
  background: rgba(93, 134, 124, 0.18);
  animation: drift 18s ease-in-out infinite reverse;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
  gap: 24px;
  align-items: stretch;
  max-width: 1180px;
  min-height: calc(100vh - 64px);
  margin: 0 auto;
}

.hero-copy,
.status-panel {
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.84), rgba(255, 250, 243, 0.64));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.95;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 7rem);
}

.lede {
  max-width: 38rem;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.meta-card {
  min-width: 160px;
  padding: 16px 18px;
  border: 1px solid rgba(24, 32, 34, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.meta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-panel {
  align-self: center;
  padding: 28px;
  background: linear-gradient(180deg, rgba(31, 42, 44, 0.96), rgba(35, 47, 49, 0.9));
  color: #f8f1e6;
}

.panel-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(248, 241, 230, 0.18);
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.status-panel p {
  margin: 18px 0 0;
  color: rgba(248, 241, 230, 0.78);
  line-height: 1.75;
}

.status-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(248, 241, 230, 0.12);
}

.status-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(22px, -28px, 0);
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 60vh;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-copy,
  .status-panel {
    border-radius: 22px;
  }

  .hero-copy,
  .status-panel {
    padding: 24px;
  }

  .meta-card {
    width: 100%;
  }
}
