* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #ffffff;
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  background: #121820;
}

.home-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8vh 7vw;
  background:
    linear-gradient(90deg, rgba(12, 18, 26, 0.82) 0%, rgba(12, 18, 26, 0.58) 42%, rgba(12, 18, 26, 0.14) 100%),
    url("images/home-hero-business-woman.png") center right / cover no-repeat;
}

.home-content {
  width: min(560px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #9ed3ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
}

.lead {
  max-width: 480px;
  margin: 20px 0 34px;
  color: #d9e6f2;
  font-size: 18px;
  line-height: 1.7;
}

.entry-actions {
  display: grid;
  gap: 14px;
}

.entry-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.entry-card:hover {
  border-color: rgba(158, 211, 255, 0.82);
  background: rgba(23, 105, 170, 0.42);
}

.entry-card span {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
}

.entry-card strong {
  color: #d9e6f2;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .home-page {
    align-items: end;
    padding: 8vh 20px;
    background:
      linear-gradient(180deg, rgba(12, 18, 26, 0.12) 0%, rgba(12, 18, 26, 0.72) 56%, rgba(12, 18, 26, 0.92) 100%),
      url("images/home-hero-business-woman.png") 68% center / cover no-repeat;
  }

  .lead {
    font-size: 16px;
  }
}
