body:has(.page-content.home),
.page-content.home {
  background:
    radial-gradient(circle at top left, rgba(74, 158, 104, 0.18), transparent 34rem),
    linear-gradient(135deg, #f7fbf8 0%, #eef5f1 44%, #f8faf8 100%);
}

.page-content.home .nutritwin-home {
  width: min(100%, 1120px);
  min-height: calc(100vh - 220px);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 4rem) 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-content.home .nutritwin-hero {
  width: min(100%, 760px);
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid rgba(34, 77, 50, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(20, 48, 31, 0.12);
  text-align: center;
  backdrop-filter: blur(10px);
}

.page-content.home .nutritwin-logo {
  display: block;
  width: clamp(112px, 18vw, 164px);
  height: clamp(112px, 18vw, 164px);
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(31, 82, 49, 0.18);
}

.page-content.home .nutritwin-copy {
  display: grid;
  gap: 0.75rem;
}

.page-content.home .nutritwin-copy .title {
  margin: 0;
  color: #163322;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.page-content.home .nutritwin-copy h2 {
  max-width: 42rem;
  margin: 0 auto;
  color: #42564a;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.page-content.home .nutritwin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
  margin-top: 2rem;
}

.page-content.home .nutritwin-actions .ui.button {
  min-width: 10.5rem;
  margin: 0;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: none;
}

.page-content.home .nutritwin-actions .ui.primary.button {
  background: #287343;
}

.page-content.home .nutritwin-actions .ui.primary.button:hover,
.page-content.home .nutritwin-actions .ui.primary.button:focus {
  background: #1f6036;
}

.page-content.home .nutritwin-actions .ui.button:not(.primary) {
  border: 1px solid rgba(33, 74, 46, 0.18);
  background: #ffffff;
  color: #244630;
}

.page-content.home .nutritwin-actions .ui.button:not(.primary):hover,
.page-content.home .nutritwin-actions .ui.button:not(.primary):focus {
  background: #f3f8f4;
  color: #173221;
}

@media (max-width: 540px) {
  .page-content.home .nutritwin-home {
    min-height: auto;
    padding: 1.5rem 1rem 2rem;
    align-items: flex-start;
  }

  .page-content.home .nutritwin-hero {
    padding: 1.5rem;
  }

  .page-content.home .nutritwin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-content.home .nutritwin-actions .ui.button {
    width: 100%;
  }
}
