:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17232d;
  background: #f4f6f7;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(40, 114, 98, 0.14), transparent 34rem),
    linear-gradient(180deg, #f9fafb 0, #f1f4f5 100%);
}

.landing-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 58px 30px 72px;
}

.landing-header {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #d8dfe2;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(34, 52, 64, 0.1);
}

.kicker,
.card-run {
  margin: 0 0 8px;
  color: #22725e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: #576872;
  font-size: 18px;
  line-height: 1.55;
}

.report-count {
  display: inline-flex;
  margin: 26px 0 0;
  padding: 7px 11px;
  border: 1px solid #b8d5cc;
  border-radius: 999px;
  background: #eef8f5;
  color: #1b6855;
  font-size: 12px;
  font-weight: 750;
}

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

.report-card,
.empty-state {
  border: 1px solid #d8dfe2;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 13px 38px rgba(34, 52, 64, 0.075);
}

.report-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
}

.report-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.card-title {
  margin: 12px 0 0;
  color: #576872;
  line-height: 1.55;
}

.card-meta {
  display: grid;
  gap: 9px;
  margin: auto 0 21px;
  padding-top: 28px;
}

.card-meta div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
}

.card-meta dt {
  color: #7a8991;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card-meta dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
}

.open-report {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 45px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #216d59;
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.open-report:hover {
  background: #185844;
  transform: translateY(-1px);
}

.open-report:focus-visible {
  outline: 3px solid rgba(33, 109, 89, 0.28);
  outline-offset: 3px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 56px 28px;
  text-align: center;
}

.empty-state h2 {
  margin: 0;
  font-size: 25px;
}

.empty-state p {
  margin: 10px 0 0;
  color: #687881;
}

@media (max-width: 720px) {
  .landing-shell {
    padding: 24px 14px 48px;
  }

  .landing-header {
    padding: 25px 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .open-report {
    transition: none;
  }
}
