:root {
  --paper: #f1eadc;
  --paper-glow: #f7f2e8;
  --ink: #1b1d1b;
  --muted: #5d6258;
  --line: rgba(27, 29, 27, 0.14);
  --accent: #2f6b4a;
  --accent-soft: rgba(47, 107, 74, 0.12);
  --panel: rgba(255, 252, 246, 0.78);
  --shadow: rgba(25, 31, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 107, 74, 0.18), transparent 32rem),
    radial-gradient(circle at right center, rgba(173, 127, 78, 0.16), transparent 28rem),
    linear-gradient(135deg, var(--paper-glow), var(--paper));
  overflow-x: hidden;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 28rem);
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 4rem);
}

.background-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 29, 27, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 29, 27, 0.045) 1px, transparent 1px);
  background-size: 2.75rem 2.75rem;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 90%);
  animation: drift 24s linear infinite;
  pointer-events: none;
}

.hero,
.status-panel {
  position: relative;
  z-index: 1;
  animation: rise 700ms ease-out both;
}

.hero {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: "Fraunces", serif;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.lede {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.7;
  color: var(--muted);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.link-row a {
  display: inline-flex;
  align-items: center;
  padding: 0.82rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.link-row a:hover,
.link-row a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 107, 74, 0.4);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 28px -18px var(--shadow);
  outline: none;
}

.status-panel {
  padding: 1.4rem;
  border: 1px solid rgba(27, 29, 27, 0.08);
  border-radius: 1.8rem;
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px -38px var(--shadow);
}

.status-panel section + section {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(27, 29, 27, 0.08);
}

.section-label {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.panel-copy {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.status-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: var(--accent-soft);
}

.status-list span {
  font-weight: 600;
  text-transform: lowercase;
}

.status-list strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  text-align: right;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  50% {
    transform: translate3d(0, 1.2rem, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 960px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: start;
    padding-top: 5rem;
  }

  h1 {
    max-width: 11ch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 1.4rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .status-list li {
    align-items: flex-start;
    flex-direction: column;
  }

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