:root {
  color-scheme: light;
  --ink: #18202f;
  --muted: #667085;
  --line: #d9e2ef;
  --surface: #ffffff;
  --wash: #eef4f8;
  --accent: #0f766e;
  --accent-2: #c2410c;
  --ok: #15803d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, sans-serif;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), transparent 32rem),
    linear-gradient(315deg, rgba(194, 65, 12, 0.12), transparent 28rem),
    var(--wash);
}

code {
  padding: 0.12rem 0.32rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #f8fafc;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(24, 32, 47, 0.10);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 1.02;
}

h2 {
  font-size: 1.05rem;
}

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

.status-panel {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border-radius: 8px;
  color: white;
  background: linear-gradient(145deg, #0f766e, #1f2937);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 0 8px rgba(134, 239, 172, 0.18);
}

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

.tile,
.asset-section,
.links {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.tile {
  min-height: 188px;
  padding: 18px;
}

.tile p {
  color: var(--muted);
  line-height: 1.62;
}

.image-tile img {
  display: block;
  width: 100%;
  max-height: 112px;
  margin-top: 14px;
}

.button,
.links a,
button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  background: white;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.asset-section {
  margin-top: 18px;
  padding: 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.ok {
  color: var(--ok);
  font-weight: 800;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
}

.links h2 {
  width: 100%;
}

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