/* [project]/styles/HomePage.module.css [app-client] (css) */
.HomePage-module__wtOjGq__page {
  background: var(--main-bg);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 60px 40px;
  display: flex;
  position: relative;
}

.HomePage-module__wtOjGq__page:before {
  content: "";
  background: radial-gradient(ellipse at 50% 50%,
    rgba(var(--accent-color-rgb), .03) 0%,
    transparent 70%);
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.HomePage-module__wtOjGq__container {
  z-index: 1;
  width: 100%;
  max-width: 640px;
  position: relative;
}

.HomePage-module__wtOjGq__content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  display: flex;
}

.HomePage-module__wtOjGq__header {
  margin-bottom: 8px;
}

.HomePage-module__wtOjGq__icon {
  color: var(--accent-color);
  opacity: .8;
}

.HomePage-module__wtOjGq__intro {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  display: flex;
}

.HomePage-module__wtOjGq__greeting {
  color: #fff6;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0;
}

.HomePage-module__wtOjGq__name {
  color: var(--text-color);
  letter-spacing: -.03em;
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
}

.HomePage-module__wtOjGq__role {
  color: var(--accent-color);
  letter-spacing: .5px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.HomePage-module__wtOjGq__divider {
  background: linear-gradient(90deg,
    transparent,
    var(--accent-color),
    transparent);
  opacity: .6;
  width: 60px;
  height: 2px;
  margin: 8px 0;
}

.HomePage-module__wtOjGq__description {
  color: #ffffff8c;
  max-width: 700px;
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.HomePage-module__wtOjGq__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.HomePage-module__wtOjGq__primaryAction, .HomePage-module__wtOjGq__secondaryAction {
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.HomePage-module__wtOjGq__primaryAction {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 20px rgba(var(--accent-color-rgb), .3);
}

.HomePage-module__wtOjGq__primaryAction:hover {
  box-shadow: 0 6px 24px rgba(var(--accent-color-rgb), .4);
  transform: translateY(-2px);
}

.HomePage-module__wtOjGq__secondaryAction {
  color: #fffc;
  background: #ffffff08;
  border: 1px solid #ffffff1a;
}

.HomePage-module__wtOjGq__secondaryAction:hover {
  background: #ffffff12;
  border-color: #fff3;
  transform: translateY(-2px);
}

.HomePage-module__wtOjGq__links {
  border-top: 1px solid #ffffff0f;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding-top: 32px;
  display: flex;
}

.HomePage-module__wtOjGq__link {
  color: #fff6;
  border-radius: 4px;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.HomePage-module__wtOjGq__link:hover {
  color: #ffffffe6;
  background: #ffffff0d;
}

.HomePage-module__wtOjGq__linkSeparator {
  color: #ffffff26;
  font-size: 12px;
}

@media (max-width: 640px) {
  .HomePage-module__wtOjGq__page {
    padding: 40px 24px;
  }

  .HomePage-module__wtOjGq__name {
    font-size: 40px;
  }

  .HomePage-module__wtOjGq__role {
    font-size: 16px;
  }

  .HomePage-module__wtOjGq__description {
    max-width: 100%;
    font-size: 14px;
  }

  .HomePage-module__wtOjGq__actions {
    flex-direction: column;
    width: 100%;
  }

  .HomePage-module__wtOjGq__primaryAction, .HomePage-module__wtOjGq__secondaryAction {
    justify-content: center;
    width: 100%;
  }
}

/*# sourceMappingURL=styles_HomePage_module_0ap4xbc.css.map*/