:root {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f6f4ee;
  background: #0d0d10;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 32rem),
    linear-gradient(135deg, #0d0d10, #17171d 58%, #0a0a0d);
}

.shell {
  width: min(1080px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 32px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #b9b2a6;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.lede {
  max-width: 660px;
  margin: 28px 0 0;
  color: #d6d0c5;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.actions a {
  color: #0d0d10;
  background: #f6f4ee;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.actions a + a {
  color: #f6f4ee;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.panel div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.panel span {
  display: block;
  margin-bottom: 8px;
  color: #a9a196;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.panel strong {
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  .panel {
    grid-template-columns: 1fr;
  }
}

