:root {
  --bg: #fafafa;
  --text: #151515;
  --muted: #737373;
  --border: #e4e4e4;
  --border-hover: #d4d4d4;
  --surface: #ffffff;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.showcases {
  width: min(960px, calc(100% - 32px));
  padding: 80px 0;
  text-align: center;
}

h1 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.lead {
  margin: 0 auto;
  max-width: 900px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.lead--compact {
  font-size: 18px;
  letter-spacing: 0;
}

.lead a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 28px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
  transition:
    transform 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

.button span {
  font-size: 19px;
  line-height: 1;
}

@media (max-width: 560px) {
  .showcases {
    padding: 56px 0;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 36px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }
}
