:root {
  --ink: #fff7ed;
  --muted: #d6c7b6;
  --panel: rgba(8, 13, 18, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f0b35a;
  --teal: #8fd6c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: #070b0f url("./assets/God.jpeg") center top / cover fixed no-repeat;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.92) 0%, rgba(4, 7, 10, 0.78) 45%, rgba(4, 7, 10, 0.56) 100%),
    linear-gradient(180deg, rgba(4, 7, 10, 0.35) 0%, rgba(4, 7, 10, 0.9) 78%, rgba(4, 7, 10, 0.98) 100%);
}

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

.hero {
  min-height: 36vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 20px;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 14px;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.copy {
  max-width: 680px;
  color: #f2e4d2;
  line-height: 1.65;
}

.pill,
.metrics article,
.charts article,
.cards article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px);
}

.pill {
  padding: 10px 12px;
  color: var(--teal);
  font-weight: 800;
}

.slicer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--panel);
  backdrop-filter: blur(13px);
}

.slicer span {
  color: #f7ddbb;
  font-size: 0.82rem;
  font-weight: 800;
}

.slicer button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(5, 9, 12, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.slicer button.active {
  border-color: rgba(240, 179, 90, 0.88);
  color: #1b1208;
  background: var(--gold);
}

.metrics,
.charts,
.cards {
  display: grid;
  gap: 18px;
}

.metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.charts,
.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metrics article,
.charts article,
.cards article {
  padding: 18px;
}

.metrics article {
  min-height: 126px;
  display: grid;
  align-content: space-between;
}

.metrics span,
.metrics small,
.cards small {
  color: var(--muted);
}

.metrics strong {
  color: var(--gold);
  font-size: 2rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
}

.tags span:first-child {
  color: #ffe8bd;
}

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

  h1 {
    font-size: 2.2rem;
  }
}
