:root {
  --argus-sand: #fff7ed;
  --argus-ink: #1f1a16;
  --argus-mango: #ff8a3d;
  --argus-amber: #ffc069;
  --argus-teal: #1aa6a6;
  --argus-stone: #e7e1d9;
}

.md-typeset h1, .md-typeset h2, .md-typeset h3 {
  letter-spacing: -0.01em;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #ffe7d1, transparent 50%),
    linear-gradient(135deg, #fff7ed, #fff1e6 60%, #fef6f2);
  border: 1px solid var(--argus-stone);
  box-shadow: 0 20px 60px rgba(31, 26, 22, 0.08);
  margin-bottom: 2.5rem;
}

.hero__eyebrow {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: rgba(31, 26, 22, 0.5);
  margin: 0 0 0.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero__card {
  background: #fffaf6;
  border: 1px solid var(--argus-stone);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero__card pre {
  margin: 0;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--argus-stone);
  background: white;
  box-shadow: 0 16px 40px rgba(31, 26, 22, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h3 {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(31, 26, 22, 0.12);
}

html.is-loaded .hero,
html.is-loaded .card {
  animation: float-in 0.6s ease both;
}

html.is-loaded .card {
  animation-delay: 0.1s;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.is-loaded .hero,
  html.is-loaded .card {
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 1.75rem;
  }
}
