:root {
  color: #171511;
  background: #f4efe5;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
}

a {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  padding: clamp(20px, 4vw, 48px);
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(45, 105, 93, 0.22),
      transparent 26rem
    ),
    radial-gradient(
      circle at 10% 78%,
      rgba(174, 63, 48, 0.18),
      transparent 24rem
    ), linear-gradient(135deg, #f7f1e6 0%, #e8dcc8 52%, #cad8d5 100%);
}

.hero-panel {
  display: flex;
  min-height: min(42vh, 420px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.eyebrow,
.stage-pill,
.status-card span {
  margin: 0;
  color: #6c3129;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #1f1712;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.lede {
  max-width: 34rem;
  margin: 0;
  color: #463a2f;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-action,
.stage-pill {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  text-decoration: none;
}

.primary-action {
  background: #1c3f39;
  color: #fffaf1;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(28, 63, 57, 0.22);
}

.stage-pill {
  border: 1px solid rgba(31, 23, 18, 0.18);
  background: rgba(255, 250, 241, 0.7);
}

.status-row {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 20px auto 0;
}

.status-card {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(31, 23, 18, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 241, 0.62);
}

.status-card strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #1f1712;
  font-size: 1.15rem;
}

.proof-row {
  display: grid;
  max-width: 1180px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px auto 0;
}

.proof-panel {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(31, 23, 18, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(255, 250, 241, 0.7);
}

.proof-panel h2 {
  margin: 6px 0 0;
  color: #1f1712;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.proof-grid div {
  min-width: 0;
  border-top: 1px solid rgba(31, 23, 18, 0.14);
  padding-top: 14px;
}

.proof-grid dt {
  margin: 0 0 7px;
  color: #6c3129;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-grid dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  color: #1f1712;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 820px) {
  .status-row {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}
