:root {
  --sena-green: #4d8d37;
  --sena-green-dark: #2f6e23;
  --sena-green-soft: #e8f3ea;
  --text: #16311e;
  --muted: #4d5f52;
  --line: #d5e5d8;
  --surface: #ffffff;
  --page: #f5f8f4;
  --shadow: 0 18px 40px rgba(31, 73, 39, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(77, 141, 55, 0.08), rgba(77, 141, 55, 0.02) 180px),
    var(--page);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  background: var(--sena-green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(39, 91, 28, 0.2);
}

.brand-bar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-state {
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.96;
}

.page-main {
  padding: 38px 0 56px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 36px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sena-green-dark);
}

h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.02;
  font-weight: 700;
}

.lead {
  margin: 18px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.actions {
  margin-top: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--sena-green-soft);
  color: var(--sena-green-dark);
  font-weight: 600;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sena-green);
}

.hero-panel {
  padding: 30px 28px;
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
}

.hero-panel h2,
.info-card h3 {
  margin: 0 0 14px;
  font-size: 1.08rem;
  color: var(--sena-green-dark);
}

.hero-panel ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

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

.info-card {
  padding: 24px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .hero,
  .info {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .brand-bar {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}