/* Copyright (c) Juan-Pablo Scaletti <juanpablo@jpscaletti.com> */
.page-home {
  padding-top: 20px;
  padding-bottom: 200px;
  padding-left: var(--cd-padding-left);
  padding-right: var(--cd-padding-right);
  position: relative;
}
.page-home a.headerlink {
  display: none;
}
.page-home .home-bg {
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(100% 100% at 100% 50%, #fff, #0000);
  stroke: #eee;
  width: 100%;
  height: 50vh;
  z-index: -10;
}

.page-home section.hero {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  max-width: 56rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
  color: var(--color-fg-default);
}
.page-home section.hero h1 {
  display: block;
  margin: 20px 0;
  position: relative;
}
.page-home section.hero h1 img {
  width: 600px;
}
.page-home section.hero h2 {
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0;
  max-width: 40rem;
  font-weight: 600;
  color: --ui-fg-base;
}
.page-home section.hero h2 span {
  color: var(--ui-fg-muted);
}

.page-home section.cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem
}

.dev-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;

  display: inline-block;
  background: linear-gradient(to bottom, #d0eaff 0%, #7db9e8 100%);
  color: #084d78;
  font-family: "Verdana", sans-serif;
  font-size: 24px;
  font-weight: bold;
  padding: 4px 20px;
  border-radius: 120px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #6ca8d9;
  text-shadow: 0 1px 2px #fff;
  letter-spacing: 1px;
  user-select: none;
}