:root {
  --bg: #edf3ef;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #173128;
  --muted: #5f766c;
  --line: rgba(23, 49, 40, 0.1);
  --accent: #6fcf97;
  --accent-dark: #2f8f59;
  --shadow: 0 28px 80px rgba(23, 49, 40, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 207, 151, 0.24), transparent 28%),
    radial-gradient(circle at right 20%, rgba(47, 143, 89, 0.12), transparent 22%),
    linear-gradient(180deg, #edf3ef 0%, #f8fbf9 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.hero-shell {
  width: min(100%, 1120px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.16);
}

.top-row,
.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand img {
  width: 184px;
  height: auto;
}

.status-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.status-pill {
  padding: 12px 16px;
  background: rgba(111, 207, 151, 0.18);
  color: var(--accent-dark);
  font-size: 0.92rem;
}

.hero-copy {
  padding: 88px 0 48px;
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.lead,
.info-card p,
.small-note {
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.info-card p {
  margin: 0;
  line-height: 1.7;
}

.accent-card {
  background: linear-gradient(135deg, #173128, #23493b);
  border-color: rgba(255, 255, 255, 0.08);
}

.accent-card h2,
.accent-card p,
.accent-card .primary-link {
  color: #ffffff;
}

.primary-link {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
}

.bottom-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.small-note {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 780px) {
  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  .top-row,
  .bottom-row,
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 52px 0 32px;
  }

  h1 {
    max-width: 12ch;
  }
}
