:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --ink: #10203a;
}

:root[data-environment='qa'] {
  --accent: #7c3aed;
  --accent-soft: #ede9fe;
}
:root[data-environment='stg'] {
  --accent: #b45309;
  --accent-soft: #fef3c7;
}
:root[data-environment='prod'] {
  --accent: #be123c;
  --accent-soft: #ffe4e6;
}

* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at top right, var(--accent-soft), #f8fafc 46%);
  color: var(--ink);
}
main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}
.badge {
  border-radius: 999px;
  padding: 7px 12px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero {
  padding: 120px 0 64px;
}
.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  font-size: clamp(46px, 8vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.96;
}
.hero > p:last-child {
  max-width: 650px;
  color: #52627a;
  font-size: 18px;
  line-height: 1.65;
}
.details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 24px 60px rgb(15 23 42 / 8%);
}
.details article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-right: 1px solid #dbe3ee;
}
.details article:last-child {
  border: 0;
}
.details span {
  color: #64748b;
  font-size: 12px;
}
.details strong {
  font-size: 20px;
}
.examples {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.examples a {
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 11px 15px;
  background: white;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 680px) {
  .hero {
    padding-top: 80px;
  }
  .details {
    grid-template-columns: 1fr 1fr;
  }
  .details article:nth-child(2) {
    border-right: 0;
  }
  .details article:nth-child(-n + 2) {
    border-bottom: 1px solid #dbe3ee;
  }
}
