.home-page {
  color: var(--text-primary);
}
.home-hero {
  padding: 120px 24px 140px;
  background: linear-gradient(
    180deg,
    #F5F1EB 0%,
    #EFE8DF 100%
  );
}

.home-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.hero-title {
  margin-bottom: 28px;
}

.hero-title-marker {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  z-index: 0;

  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  background-image: linear-gradient(
    179deg,
    #FFB71D 0%,
    #FFB71D 62%,
    transparent 54%,
    transparent 100%
  );
  background-size: 100% 18%;
  background-repeat: repeat-x;
  background-position: left 0% bottom -7%;
}
.hero-subtitle {
  max-width: 920px;
  margin: 0 auto 44px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  background: var(--accent-primary);
  color: #ffffff;
  border: none;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.login-button:hover {
  background: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 36px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;

  background: var(--accent-primary);
  color: #ffffff;
  border: none;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.login-button:hover {
  background: #0284C7;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}
.home-highlights {
  max-width: 1200px;
  margin: 0 auto 120px;
  padding: 0 24px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.highlight-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(136, 146, 176, 0.15);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.home-capabilities {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 0 24px;
}

.home-capabilities h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 14px;
  text-align: left;
}

.home-capabilities h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  background: var(--accent-secondary);
  border-radius: 2px;
}

.capability-list p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.home-cta {
  max-width: 1100px;
  margin: 0 auto 120px;
  padding: 56px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(136, 146, 176, 0.15);
  box-shadow: var(--shadow-card);
}

.home-cta p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .home-hero {
    padding: 80px 20px 100px;
  }
}

@media (max-width: 768px) {
  .hero-title-marker {
    font-size: 36px;
  }
  
  .home-hero {
    padding: 60px 20px 80px;
  }

  .home-highlights {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .home-capabilities h2 {
    font-size: 28px;
  }

  .home-cta {
    padding: 32px 24px;
    margin-bottom: 60px;
  }
}